Files
FictionArchive/fictionarchive-web-astro/src/pages/novels/[id]/chapters/[chapterNumber].astro

11 lines
336 B
Plaintext

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