diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 10:04:17 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 10:04:17 -0800 |
| commit | 5669961d674b2764082c7c9585484cb090b71e45 (patch) | |
| tree | 12cb5fadb849ecb725e7484e3717b9740800e929 /frontend/src/components/FeedList.tsx | |
| parent | 23a48e1d498680be769e931f46ddb1fd44f38d1a (diff) | |
| download | neko-5669961d674b2764082c7c9585484cb090b71e45.tar.gz neko-5669961d674b2764082c7c9585484cb090b71e45.tar.bz2 neko-5669961d674b2764082c7c9585484cb090b71e45.zip | |
Implement frontend parity features: Unread view, shortcuts, scroll-to-read, filters
Diffstat (limited to 'frontend/src/components/FeedList.tsx')
| -rw-r--r-- | frontend/src/components/FeedList.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/src/components/FeedList.tsx b/frontend/src/components/FeedList.tsx index f17fdc7..d1a4625 100644 --- a/frontend/src/components/FeedList.tsx +++ b/frontend/src/components/FeedList.tsx @@ -36,6 +36,13 @@ export default function FeedList() { return ( <div className="feed-list"> + <div className="filter-section"> + <ul className="filter-list"> + <li><Link to="/?filter=unread">Unread</Link></li> + <li><Link to="/?filter=all">All</Link></li> + <li><Link to="/?filter=starred">Starred</Link></li> + </ul> + </div> <div className="feed-section"> <h2>Feeds</h2> {feeds.length === 0 ? ( |
