-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.jsx
25 lines (22 loc) · 847 Bytes
/
index.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { CssBaseline } from '@mui/material';
import { StyledEngineProvider } from '@mui/styled-engine';
import 'perfect-scrollbar/css/perfect-scrollbar.css';
import ReactDOM from 'react-dom';
import { BrowserRouter } from 'react-router-dom';
import App from './app/App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(
<StyledEngineProvider injectFirst>
<BrowserRouter>
<CssBaseline />
<App />
</BrowserRouter>
</StyledEngineProvider>,
document.getElementById('root')
);
// for IE-11 support un-comment cssVars() and it's import in this file
// and in TmsTheme file
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();