git-subtree-dir: manga-site git-subtree-split: f2ef775f7095dc2b107b576cd4053593e89dd887
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
export default function ChapterLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
// The chapter reader has its own full-screen layout
|
|
// Override parent padding/nav by rendering children directly
|
|
return <>{children}</>;
|
|
}
|