remove vanilla css

This commit is contained in:
iMax 2024-12-05 21:46:04 +01:00
parent c992014d53
commit 525ce0515c
4 changed files with 0 additions and 148 deletions

View file

@ -1,7 +1,5 @@
import { BrowserRouter, Route, Routes } from "react-router";
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import MainPage from "./pages/MainPage.tsx";
import GamePage from "./pages/GamePage.tsx";
@ -10,7 +8,6 @@ createRoot(document.getElementById('root')!).render(
<BrowserRouter>
<Routes>
<Route path="/" element={<MainPage />} />
<Route path="/vite" element={<App />} />
<Route path="/game" element={<GamePage />} />
</Routes>
</BrowserRouter>,