Last active
November 28, 2015 22:10
-
-
Save JonathanZWhite/238ec092cfb2baae1bfc 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 Root from './containers/Root' | |
import configureStore from './store/configureStore' | |
const store = configureStore() | |
render( | |
<Root store={store} />, | |
document.getElementById('root') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment