diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-26 21:55:46 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-26 21:55:46 -0700 |
| commit | 00d476a0e51629f06407aed035fbc001d3f6b114 (patch) | |
| tree | 016338cc4dacff54ba1cbe11fce063152cbd28ab /src/app.tsx | |
| parent | 84fbd4ee1e159b0426d664cc98a3dc7165d6381f (diff) | |
initial guess MV mode
Diffstat (limited to 'src/app.tsx')
| -rw-r--r-- | src/app.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app.tsx b/src/app.tsx index 044cbfc..163d769 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -4,6 +4,7 @@ import { BrowserRouter, Routes, Route } from "react-router-dom"; import { LandingPage } from "./pages/LandingPage"; import { DailyPage } from "./pages/DailyPage"; import { UnlimitedPage } from "./pages/UnlimitedPage"; +import { MVPage } from "./pages/MVPage"; function App() { return ( @@ -11,6 +12,7 @@ function App() { <Routes> <Route path="/" element={<LandingPage />} /> <Route path="/daily" element={<DailyPage />} /> + <Route path="/mv" element={<MVPage />} /> <Route path="/unlimited" element={<UnlimitedPage />} /> </Routes> </BrowserRouter> |
