Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created June 16, 2020 18:16
Show Gist options
  • Save azamsharp/5f6777377ae28a082e03b60cf91bee6c to your computer and use it in GitHub Desktop.
Save azamsharp/5f6777377ae28a082e03b60cf91bee6c to your computer and use it in GitHub Desktop.
Browser Router and Provider
ReactDOM.render(
<Provider store = { store }>
<BrowserRouter>
<BaseLayout>
<Switch>
<Route exact path = "/" component = { App } />
</Switch>
</BaseLayout>
</BrowserRouter>
</Provider>
, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment