This commit is contained in:
Philippe Torrel
2026-08-05 14:21:08 +02:00
parent 0bca2f9ad1
commit fae4f8f7ce
55 changed files with 9269 additions and 0 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>
);