Files
react-logo/frontend/src/index.js

15 lines
340 B
JavaScript
Raw Normal View History

import ReactDOM from 'react-dom';
import { HotApp as App } from './app';
import { configureStore } from './store/store';
import { Provider } from 'react-redux';
2020-03-26 11:09:29 +01:00
import 'bulma/bulma.sass';
2020-02-04 17:20:39 +01:00
const store = configureStore();
2020-02-04 17:20:39 +01:00
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('app')
);