import { ReactNode } from 'react'; type Properties = { children?: ReactNode; }; const PostTitle = ({ children }: Properties): JSX.Element => { return (