diff --git a/front/src/main.tsx b/front/src/main.tsx new file mode 100644 index 0000000..ce00332 --- /dev/null +++ b/front/src/main.tsx @@ -0,0 +1,14 @@ +import { BrowserRouter, Route, Routes } from "react-router"; +import { createRoot } from 'react-dom/client' +import MainPage from "./pages/MainPage.tsx"; +import GamePage from "./pages/GamePage.tsx"; + + +createRoot(document.getElementById('root')!).render( + + + } /> + } /> + + , +) diff --git a/front/src/pages/main.tsx b/front/src/pages/MainPage.tsx similarity index 100% rename from front/src/pages/main.tsx rename to front/src/pages/MainPage.tsx