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

11 lines
294 B
TypeScript

const LandingLayout = ({ children }: { children: React.ReactNode }) => {
return (
<main className="h-full overflow-auto">
<div className="mx-auto max-w-screen-full h-full w-full">
{children}
</div>
</main>
);
};
export default LandingLayout;