18 lines
389 B
TypeScript
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>
|
|
);
|
|
}
|