infer-vst / front /src /main.tsx
Yann
add front
15975c4
raw
history blame
255 Bytes
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>
);