feat: add MUI style

This commit is contained in:
Maël Gangloff
2024-07-19 23:46:07 +02:00
parent 737ad4605b
commit 367f62f25a
6 changed files with 6289 additions and 120 deletions

7
assets/index.tsx Normal file
View File

@@ -0,0 +1,7 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom/client';
const rootElement = document.getElementById('root');
const root = ReactDOM.createRoot(rootElement!);
root.render(<></>)