From 3ba71500bc2d60a00ca81b9439305029670f4d52 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 06:55:21 -0800 Subject: Implement Frontend Feed Items View with tests --- frontend/coverage/src/App.tsx.html | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'frontend/coverage/src/App.tsx.html') diff --git a/frontend/coverage/src/App.tsx.html b/frontend/coverage/src/App.tsx.html index 9d8fd6f..a233a8d 100644 --- a/frontend/coverage/src/App.tsx.html +++ b/frontend/coverage/src/App.tsx.html @@ -138,7 +138,11 @@ 73 74 75 -76  +76 +77 +78 +79 +80        @@ -174,6 +178,7 @@       +  1x     @@ -195,6 +200,9 @@       +  +  +  2x     @@ -247,6 +255,7 @@ function RequireAuth({ children }: { children: React.ReactElement }) { }   import FeedList from './components/FeedList'; +import FeedItems from './components/FeedItems';   function Dashboard() { return ( @@ -262,7 +271,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> @@ -295,7 +307,7 @@ export default App;