incr/resources/js/layouts/auth-layout.tsx

10 lines
372 B
TypeScript
Raw Normal View History

2025-07-10 15:24:15 +02:00
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>
);
}