20 lines
419 B
JavaScript
20 lines
419 B
JavaScript
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.css';
|
|
import App from './App';
|
|
import reportWebVitals from './reportWebVitals';
|
|
import { Provider } from "react-redux"
|
|
import { store } from "./store/Store"
|
|
// App
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
);
|
|
|
|
reportWebVitals();
|