react-logo/frontend/src/index.js

15 lines
327 B
JavaScript
Raw Normal View History

2020-02-04 17:20:39 +01:00
import ReactDOM from 'react-dom'
import App from './app'
import { configureStore } from './store/store'
import { Provider } from 'react-redux'
2020-02-17 22:28:57 +01:00
import 'bulma/css/bulma.min.css';
2020-02-04 17:20:39 +01:00
const store = configureStore()
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('app')
)