import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; import thunk from "redux-thunk"; import { createStore, combineReducers, applyMiddleware } from "redux"; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( ); reportWebVitals();