import styles from "./pageContainer.module.css" import type { PropsWithChildren } from "react" export default function PageContainer({ children }: PropsWithChildren) { return
{children}
}