AuthLayout.tsx 376 B

123456789
  1. import AuthLayoutTemplate from '@/pages/layouts/auth/AuthSimpleLayout';
  2. export default function AuthLayout({ children, title, description, ...props }: { children: React.ReactNode; title: string; description: string }) {
  3. return (
  4. <AuthLayoutTemplate title={title} description={description} {...props}>
  5. {children}
  6. </AuthLayoutTemplate>
  7. );
  8. }