test cicd
This commit is contained in:
13
src/index.tsx
Normal file
13
src/index.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import * as React from 'react';
|
||||
import * as ReactDOM from 'react-dom/client';
|
||||
import type {} from '@mui/material/themeCssVarsAugmentation';
|
||||
import { StyledEngineProvider } from '@mui/material/styles';
|
||||
import App from './dashboard/Dashboard';
|
||||
|
||||
ReactDOM.createRoot(document.querySelector("#root")!).render(
|
||||
<React.StrictMode>
|
||||
<StyledEngineProvider injectFirst>
|
||||
<App />
|
||||
</StyledEngineProvider>
|
||||
</React.StrictMode>
|
||||
);
|
||||
Reference in New Issue
Block a user