2025-01-30 00:53:30 +05:30

13 lines
229 B
TypeScript

const AuthLayout = ({
children
}: {
children: React.ReactNode;
}) => {
return (
<div className="flex items-center justify-center h-full">
{children}
</div>
);
};
export default AuthLayout;