15975c4
1
2
3
4
5
6
7
8
9
10
11
12
13
import { createRoot } from 'react-dom/client'; import App from './App'; import M3 from './theme/M3/M3'; const container = document.getElementById('root') as Element; const root = createRoot(container); root.render( <M3> <App /> </M3> );