Files
MoonTVPlus/src/app/manga/layout.tsx
T
2026-04-16 16:01:47 +08:00

10 lines
201 B
TypeScript

import MangaLayout from '@/components/manga/MangaLayout';
export default function MangaAppLayout({
children,
}: {
children: React.ReactNode;
}) {
return <MangaLayout>{children}</MangaLayout>;
}