fosrl.pangolin/src/app/auth/layout.tsx

14 lines
261 B
TypeScript
Raw Normal View History

2024-10-19 16:37:40 -04:00
type AuthLayoutProps = {
children: React.ReactNode;
};
export default async function AuthLayout({ children }: AuthLayoutProps) {
return (
<>
<div className="mt-32">
{children}
</div>
</>
);
}