mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
interface AuthLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function AuthLayout({ children }: AuthLayoutProps) {
|
|
return <div className="min-h-screen">{children}</div>
|
|
}
|