Created
March 18, 2019 13:48
-
-
Save mdmoin7/e18ec53d2a3e324cc98974b798c316a9 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 { Provider } from 'react-redux'; | |
import appStore from './store'; | |
..... | |
const AppWithStore=()=>( | |
<Provider store={appStore}> | |
<App /> | |
</Provider> | |
) | |
render(<AppWithStore />, document.getElementById('root')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment