hermes-web/app/auth/layout.tsx

9 lines
216 B
TypeScript
Raw Normal View History

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