2022-05-31 15:14:15 +03:00
|
|
|
import React from 'react'
|
2023-02-02 18:10:44 +03:00
|
|
|
import ReactDOM from 'react-dom/client'
|
|
|
|
import {store} from './store/store'
|
|
|
|
import {Provider} from 'react-redux'
|
2022-05-31 15:14:15 +03:00
|
|
|
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
|
|
|
|
2023-02-02 18:10:44 +03:00
|
|
|
ReactDOM.createRoot(document.getElementById("root"))
|
|
|
|
.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<App/>
|
|
|
|
</Provider>,
|
|
|
|
);
|