import { type FC } from 'react' type Props = { title: string, } const TitleLine: FC = (props: Props) => { return (
{props.title}
) } export default TitleLine