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