import React from "react"; function PageWrapper({ children }: { children: React.ReactNode }) { return (
{children}
); } export default PageWrapper;