Last active
January 15, 2017 21:39
-
-
Save ryanjyost/da8a996700cefa606cf4ffefbc5e9f8a to your computer and use it in GitHub Desktop.
Pre-Redux: rainy-day-fund/src/index.js
This file contains hidden or 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
| //src/index.js | |
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import 'bootstrap/dist/css/bootstrap.css'; | |
| import 'bootstrap/dist/css/bootstrap-theme.css'; | |
| import './index.css'; | |
| import router from './router'; | |
| ReactDOM.render( | |
| router, | |
| document.getElementById('root') | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment