14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
import AuthGuard from '@/components/AuthGuard';
|
|
|
|
export default function AuthLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<AuthGuard minHeightClassName="min-h-screen">
|
|
<main className="min-h-screen bg-background text-foreground">{children}</main>
|
|
</AuthGuard>
|
|
);
|
|
}
|