This commit is contained in:
jeanotx32
2026-08-11 00:26:56 +02:00
commit 6f11b72cbb
43 changed files with 7175 additions and 0 deletions

13
packages/web/src/main.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { App } from './App';
import './styles.css';
const container = document.getElementById('root');
if (!container) throw new Error('#root introuvable');
createRoot(container).render(
<StrictMode>
<App />
</StrictMode>,
);