Files
roxane/resources/js/layouts/auth-layout.tsx

19 lines
401 B
TypeScript
Raw Permalink Normal View History

2025-10-22 17:09:48 +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>
);
}