react-logo/frontend/src/index.js

14 lines
293 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'
const store = configureStore()
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('app')
)