aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/pages/index.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-07 18:21:20 +0900
committernsfisis <nsfisis@gmail.com>2025-12-07 18:21:20 +0900
commitaf9a4912f914bb198fe13bd3421ea33ff3bf9d45 (patch)
tree707f81a146739ec4c2abb67033f8612cb5079d41 /src/client/pages/index.ts
parent0b0e7e802fcb50652c3e9912363d996a039d56d8 (diff)
downloadkioku-af9a4912f914bb198fe13bd3421ea33ff3bf9d45.tar.gz
kioku-af9a4912f914bb198fe13bd3421ea33ff3bf9d45.tar.zst
kioku-af9a4912f914bb198fe13bd3421ea33ff3bf9d45.zip
feat(client): add card list view in deck detail page
Add DeckDetailPage component that displays all cards in a deck with their front/back content, state, review count, and lapses. Deck names on HomePage are now clickable links to navigate to the deck detail view. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src/client/pages/index.ts')
-rw-r--r--src/client/pages/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/pages/index.ts b/src/client/pages/index.ts
index 0844b31..c71e661 100644
--- a/src/client/pages/index.ts
+++ b/src/client/pages/index.ts
@@ -1,3 +1,4 @@
+export { DeckDetailPage } from "./DeckDetailPage";
export { HomePage } from "./HomePage";
export { LoginPage } from "./LoginPage";
export { NotFoundPage } from "./NotFoundPage";