Files
test_polis/laravel/resources/js/layouts/auth-layout.tsx
2026-02-04 23:23:42 +07:00

19 lines
401 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>
);
}