mirror of
https://github.com/linsa-io/linsa.git
synced 2026-03-17 23:03:55 +01:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
export default function AuthLayout({
|
|
children
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return <main className="h-full">{children}</main>
|
|
}
|