Skip to content

Instantly share code, notes, and snippets.

@rafaellucio
Last active December 5, 2017 01:38
Show Gist options
  • Save rafaellucio/55add52ef9d5e9a7296609b84276a4f4 to your computer and use it in GitHub Desktop.
Save rafaellucio/55add52ef9d5e9a7296609b84276a4f4 to your computer and use it in GitHub Desktop.
import React from 'react'
import { Provider } from 'react-redux'
import { createStore } from 'redux'
import CounterContainer from './Counter.container'
const store = createStore()
const App = () => (
<Provider store={store}>
<CounterContainer />
</Provider>
)
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment