9 lines
225 B
TypeScript
Raw Permalink Normal View History

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