import Typography from "@mui/material/Typography"; import { Helmet } from "react-helmet-async"; interface IProps { title: string; } const Title = ({ title }: IProps) => ( <> Todo | {title} {title} ); export default Title;