hermes-web/app/auth/layout.tsx
2024-01-02 07:26:20 +00:00

9 lines
216 B
TypeScript

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