import { PropsWithChildren } from 'react'; export function PageHeader({ children }: PropsWithChildren) { return (
{children}
); }