mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 21:52:37 +10:00
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
interface AuthLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function AuthLayout({ children }: AuthLayoutProps) {
|
|
return <div>{children}</div>
|
|
}
|