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

14 lines
268 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="p-3 md:mt-32">
2024-10-19 16:37:40 -04:00
{children}
</div>
</>
);
}