first commit
This commit is contained in:
9
resources/js/layouts/auth-layout.tsx
Normal file
9
resources/js/layouts/auth-layout.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user