dress/resources/js/layouts/auth-layout.tsx
2026-04-11 22:26:56 +07:00

18 lines
389 B
TypeScript

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