export type PostTitleProps = { title: string; }; export default function PostTitle({ title }: PostTitleProps) { return (

{title}

); }