import type { FunctionComponent } from "react"; import clsx from "clsx"; type Props = { className?: string; title: string; }; const PageTitle: FunctionComponent = ({ className, title }) => { return (

{title}

); }; export default PageTitle;