type Props = { title: string content: string } export function PageView({ title, content }: Props) { return (

{title}

) }