Initial commit
This commit is contained in:
13
frontend/src/index.js
Normal file
13
frontend/src/index.js
Normal file
@ -0,0 +1,13 @@
|
||||
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')
|
||||
)
|
Reference in New Issue
Block a user