Files
fotospiel-app/resources/js/layouts/auth-layout.tsx
2025-09-08 14:03:43 +02:00

10 lines
372 B
TypeScript

import AuthLayoutTemplate from '@/layouts/auth/auth-simple-layout';
export default function AuthLayout({ children, title, description, ...props }: { children: React.ReactNode; title: string; description: string }) {
return (
<AuthLayoutTemplate title={title} description={description} {...props}>
{children}
</AuthLayoutTemplate>
);
}