aboutsummaryrefslogtreecommitdiffstats
path: root/site/src/App.tsx
blob: 79c64a1d2ed14f808d6bc1fe2c84687094ad65de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Home from './pages/Homepage';
import GameSelector from './pages/GameSelector'
import { Routes, Route } from "react-router-dom";

function App() {
  return (
    <Routes>
      <Route path="/" element={<Home />} />
      <Route path="/games" element={<GameSelector />} />
      <Route path="/game/:gameId" element={<Home />} />
    </Routes>
  );
}

export default App;
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage