Skip to content

Instantly share code, notes, and snippets.

@JonathanZWhite
Last active November 28, 2015 22:10
Show Gist options
  • Save JonathanZWhite/238ec092cfb2baae1bfc to your computer and use it in GitHub Desktop.
Save JonathanZWhite/238ec092cfb2baae1bfc to your computer and use it in GitHub Desktop.
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