import { ReactNode } from 'react'; import { Box } from './Box'; import { Glow } from './Glow'; export interface AuthLayoutProps { children: ReactNode; } export const AuthLayout = ({ children }: AuthLayoutProps) => { return ( {children} ); };