This commit is contained in:
Philippe Torrel
2026-08-06 14:38:46 +02:00
parent 2814319650
commit 2c47aa98b8
1022 changed files with 109709 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import 'bootstrap/dist/css/bootstrap.min.css';
import App from './App';
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>
);