type Props = { title: string; }; export const TitleBlankState: React.FC = ({ title }) => { return (

{title}

); };