Skip to content

Commit de47fe1

Browse files
author
[BigNom]
committed
Init commit
0 parents  commit de47fe1

File tree

14 files changed

+2187
-0
lines changed

14 files changed

+2187
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

app/app.jsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var React = require('react');
2+
var ReactDOM = require('react-dom');
3+
var {Route, Router, IndexRoute, hashHistory} = require('react-router');
4+
5+
// Load foundation
6+
$(document).foundation();
7+
8+
// App css
9+
require('style!css!sass!applicationStyles')
10+
11+
ReactDOM.render(
12+
<p>Boilerplate 3 project</p>,
13+
document.getElementById('app')
14+
);

app/styles/app.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@import "base/variables";
2+
3+
// foundation
4+
@import "base/foundation-settings";
5+
@import "foundation";
6+
@include foundation-everything;
7+
8+
// Components

0 commit comments

Comments
 (0)