Files
FictionArchive/fictionarchive-web-astro/src/pages/novels/[id]/volumes/[volumeId]/chapters/[chapterNumber].astro
2025-12-29 21:28:07 -05:00

11 lines
378 B
Plaintext

---
import AppLayout from '../../../../../../layouts/AppLayout.astro';
import ChapterReaderPage from '../../../../../../lib/components/ChapterReaderPage.svelte';
const { id, volumeId, chapterNumber } = Astro.params;
---
<AppLayout title="Reading - FictionArchive">
<ChapterReaderPage novelId={id} volumeId={volumeId} chapterNumber={chapterNumber} client:load />
</AppLayout>