2022-05-31 15:14:15 +03:00
|
|
|
import React from 'react'
|
|
|
|
import ReactDOM from 'react-dom'
|
|
|
|
import { store } from './store/store'
|
|
|
|
import { Provider } from 'react-redux'
|
|
|
|
import App from './App'
|
2021-05-26 13:35:57 +03:00
|
|
|
|
2022-05-31 15:14:15 +03:00
|
|
|
import './index.css'
|
2021-05-26 13:35:57 +03:00
|
|
|
|
2021-06-30 17:21:55 +03:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<App />
|
|
|
|
</Provider>,
|
|
|
|
document.getElementById('root')
|
2022-05-31 15:14:15 +03:00
|
|
|
)
|