Integre l'application d'Ethan sous /ethan

This commit is contained in:
2026-04-12 17:17:39 +02:00
parent df1d7cbd63
commit a3d3bd18a9
14 changed files with 10211 additions and 7 deletions

10
ethan/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";
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>,
);