11 lines
294 B
TypeScript
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; |