first
This commit is contained in:
40
src/index.js
Normal file
40
src/index.js
Normal file
@@ -0,0 +1,40 @@
|
||||
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();
|
||||
Reference in New Issue
Block a user