9 lines
216 B
TypeScript
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; |