Created
January 24, 2020 17:02
-
-
Save AshutoshSajan/b15b2405e99ef5a08297095b4df0074f to your computer and use it in GitHub Desktop.
This file contains 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 React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import { Provider } from 'react-redux'; | |
import { BrowserRouter as Router } from 'react-router-dom'; | |
import App from './App.jsx'; | |
import 'bulma/css/bulma.css'; | |
import './stylesheets/index.css'; | |
import { store } from './reducers/index'; | |
import * as serviceWorker from './serviceWorker'; | |
ReactDOM.render( | |
<Provider store={ store }> | |
<Router> | |
<App /> | |
</Router> | |
</Provider>, | |
document.getElementById('root') | |
); | |
serviceWorker.unregister(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment