mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-30 06:29:23 +02:00
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
|
type AuthLayoutProps = {
|
||
|
children: React.ReactNode;
|
||
|
};
|
||
|
|
||
|
export default async function AuthLayout({ children }: AuthLayoutProps) {
|
||
|
return (
|
||
|
<>
|
||
|
<div className="mt-32">
|
||
|
{children}
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
}
|