mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 11:42:37 +10:00
* replace next with vite * disable strictmode (it interferes with collaboration in dev mode)
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>
|
|
}
|