Files
dailygrubs_console/src/index.js
Malai Raja 7113ac0681 first
2023-11-27 17:09:27 +05:30

41 lines
1.2 KiB
JavaScript

import { createRoot } from 'react-dom/client';
import { BrowserRouter } from 'react-router-dom';
// third-party
import { Provider as ReduxProvider } from 'react-redux';
// scroll bar
import 'simplebar/dist/simplebar.css';
// apex-chart
import 'assets/third-party/apex-chart.css';
import 'assets/third-party/react-table.css';
// project import
import App from './App';
import { store } from 'store';
// import { ConfigProvider } from 'contexts/ConfigContext';
import reportWebVitals from './reportWebVitals';
const container = document.getElementById('root');
const root = createRoot(container);
// const root = ReactDOM.createRoot(document.getElementById('root'));
// ==============================|| MAIN - REACT DOM RENDER ||============================== //
root.render(
<ReduxProvider store={store}>
{/* <ConfigProvider> */}
<BrowserRouter>
<App />
</BrowserRouter>
{/* </ConfigProvider> */}
</ReduxProvider>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();