Created
July 5, 2016 01:20
-
-
Save anonymous/197ac98462ce78087136f3262dc91068 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'babel-polyfill'; | |
import React from 'react'; | |
import {render} from 'react-dom'; | |
import {Router, browserHistory} from 'react-router'; | |
import routes from './routes'; | |
import './styles/styles.scss'; | |
import 'bootstrap-sass/assets/stylesheets/_bootstrap.scss'; | |
import 'react-mdl/extra/material.css'; | |
import 'react-mdl/extra/material'; | |
render( | |
<Router history={browserHistory} routes={routes} />, | |
document.getElementById('app') | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment