forked from mrwyndham/fastpocket
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { WaitingListWithImageHero } from "@/sections/Hero";
|
|
import React from "react";
|
|
|
|
function PageWrapper({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<main className="h-full flex flex-col my-auto mx-auto size-full flex-grow">
|
|
{children}
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default PageWrapper;
|