Created
July 30, 2021 02:47
-
-
Save MeetMartin/b875d9420cbac033fe1f0e00f8f9e41b 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
// /src/App.js | |
import React from 'react'; | |
import { StoreProvider } from './store/StoreContext'; | |
import HomePage from './pages/HomePage'; | |
const App = () => { | |
return ( | |
<StoreProvider> | |
<HomePage /> | |
</StoreProvider> | |
); | |
}; | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment