import { ReactNode } from 'react'; interface Props { children: ReactNode; } export default function PageTitle({ children }: Props) { return (

{children}

); }