fix(layout): remove layout.tsx

This commit is contained in:
cfngc4594 2025-03-07 16:38:44 +08:00
parent ba16523c03
commit 9f619d71d1

View File

@ -1,13 +0,0 @@
interface AppLayoutProps {
children: React.ReactNode;
}
export default function AppLayout({ children }: AppLayoutProps) {
return (
<div className="h-full flex flex-col">
<main className="flex-1">
{children}
</main>
</div>
);
}