scratch-www/src/main.jsx

10 lines
311 B
React
Raw Normal View History

2015-10-16 15:10:17 -04:00
var render = require('./lib/render.jsx');
2015-09-02 12:08:58 -07:00
2015-09-03 19:41:27 -07:00
require('./main.scss');
2015-09-02 12:08:58 -07:00
var Navigation = require('./components/navigation/navigation.jsx');
var Footer = require('./components/footer/footer.jsx');
2015-10-16 15:10:17 -04:00
render(<Navigation />, document.getElementById('navigation'));
render(<Footer />, document.getElementById('footer'));