From 2c3cad528a247c771bca136466337877f76f280f Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Thu, 12 Feb 2026 21:59:55 -0800 Subject: Implement Frontend Feed List with tests --- frontend/coverage/src/App.tsx.html | 53 +++++++++++++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 7 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 7a8d1c9..9d8fd6f 100644 --- a/frontend/coverage/src/App.tsx.html +++ b/frontend/coverage/src/App.tsx.html @@ -125,7 +125,20 @@ 60 61 62 -63  +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76        @@ -160,6 +173,7 @@       +  1x     @@ -169,6 +183,18 @@       +  +  +  +  +  +  +  +  +  +  +  +  2x     @@ -220,14 +246,27 @@ function RequireAuth({ children }: { children: React.ReactElement }) { return children; }   +import FeedList from './components/FeedList'; +  function Dashboard() { - // Placeholder for now return ( - <div> - <h1>Dashboard</h1> - <p>Welcome to the new Neko/v2 frontend.</p> + <div className="dashboard"> + <header className="dashboard-header"> + <h1>Neko Reader</h1> + <nav> + {/* Add logout later */} + </nav> + </header> + <div className="dashboard-content"> + <aside className="dashboard-sidebar"> + <FeedList /> + </aside> + <main className="dashboard-main"> + <p>Select a feed to view items.</p> + </main> + </div> </div> - ) + ); }   function App() { @@ -256,7 +295,7 @@ export default App;