aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.tsx
blob: 044cbfc34c13983d0485d6935f858fdd8ebf3f2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from "react";
import { BrowserRouter, Routes, Route } from "react-router-dom";

import { LandingPage } from "./pages/LandingPage";
import { DailyPage } from "./pages/DailyPage";
import { UnlimitedPage } from "./pages/UnlimitedPage";

function App() {
  return (
    <BrowserRouter>
      <Routes>
        <Route path="/" element={<LandingPage />} />
        <Route path="/daily" element={<DailyPage />} />
        <Route path="/unlimited" element={<UnlimitedPage />} />
      </Routes>
    </BrowserRouter>
  );
}

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