import { FunctionComponent } from 'react' type Props = { className?: string } const Title: FunctionComponent = ({ children, className }) => { return
{children}
} export default Title