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}</>;
|
|
}
|