aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/App.tsx
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 06:55:21 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 06:55:21 -0800
commit3ba71500bc2d60a00ca81b9439305029670f4d52 (patch)
tree5752a119effd739c62c80c2d15d4520c2e53eadf /frontend/src/App.tsx
parent2c3cad528a247c771bca136466337877f76f280f (diff)
downloadneko-3ba71500bc2d60a00ca81b9439305029670f4d52.tar.gz
neko-3ba71500bc2d60a00ca81b9439305029670f4d52.tar.bz2
neko-3ba71500bc2d60a00ca81b9439305029670f4d52.zip
Implement Frontend Feed Items View with tests
Diffstat (limited to 'frontend/src/App.tsx')
-rw-r--r--frontend/src/App.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 7d26025..bc4e097 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -32,6 +32,7 @@ function RequireAuth({ children }: { children: React.ReactElement }) {
}
import FeedList from './components/FeedList';
+import FeedItems from './components/FeedItems';
function Dashboard() {
return (
@@ -47,7 +48,10 @@ function Dashboard() {
<FeedList />
</aside>
<main className="dashboard-main">
- <p>Select a feed to view items.</p>
+ <Routes>
+ <Route path="/feed/:feedId" element={<FeedItems />} />
+ <Route path="/" element={<p>Select a feed to view items.</p>} />
+ </Routes>
</main>
</div>
</div>