mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-10 20:28:28 +03:00
16 lines
432 B
TypeScript
16 lines
432 B
TypeScript
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom/client';
|
|
import { ThemeProvider } from '@mui/material/styles';
|
|
import { CssBaseline } from '@mui/material';
|
|
import theme from './theme';
|
|
import App from './App';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<ThemeProvider theme={theme}>
|
|
<CssBaseline />
|
|
<App />
|
|
</ThemeProvider>
|
|
</React.StrictMode>,
|
|
);
|