interface Props { children: React.ReactNode } export default function AuthLayout({ children }: Props) { return (

Shadcn Admin

{children}
) }