Ajoutez des fichiers projet.

This commit is contained in:
2025-08-06 12:07:11 +02:00
parent 3c5c65af00
commit 238a7a31b0
36 changed files with 7934 additions and 0 deletions

10
project/src/main.jsx Normal file
View File

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