Skip to content

Instantly share code, notes, and snippets.

@rocksinghajay
Last active April 8, 2019 20:17
Show Gist options
  • Save rocksinghajay/19cb4edc084813987f8dde3cc8c6fb84 to your computer and use it in GitHub Desktop.
Save rocksinghajay/19cb4edc084813987f8dde3cc8c6fb84 to your computer and use it in GitHub Desktop.
import React from 'react'
import { Provider } from 'react-redux'
import Router from './Router'
import store from './store'
class App extends React.Component {
render() {
return (
<Provider store={store}>
<Router />
</Provider>
)
}
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment