ultisuite-client/app/login/layout.tsx
2026-05-25 13:52:40 +02:00

10 lines
199 B
TypeScript

import { LoginChrome } from "@/components/auth/login-chrome"
export default function LoginLayout({
children,
}: {
children: React.ReactNode
}) {
return <LoginChrome>{children}</LoginChrome>
}