Created
January 18, 2016 20:45
-
-
Save cacheflow/a110d7f6cdb3e8584f7b to your computer and use it in GitHub Desktop.
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
import 'babel-core/polyfill' | |
import React from 'react' | |
import { render } from 'react-dom' | |
import { Provider } from 'react-redux' | |
import App from './containers/App' | |
import configureStore from './store/configureStore' | |
import 'todomvc-app-css/index.css' | |
const store = configureStore() | |
render( | |
<Provider store={store}> | |
<App /> | |
</Provider>, | |
document.getElementById('root') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment