import React, {PropsWithChildren} from "react" const PageLayout = ({children}: PropsWithChildren) => { return
{children}
} export default PageLayout