Created
April 16, 2019 09:12
-
-
Save MeetMartin/15756767d44ff5cf4b4ee3c8eb88187c 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
// index.js | |
import React from 'react'; | |
import { render } from 'react-dom'; | |
import { StoreProvider } from './store/StoreContext'; | |
import App from './App'; | |
render( | |
<StoreProvider> | |
<App /> | |
</StoreProvider>, | |
document.getElementById('root')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment