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