import React from 'react' import { Typography, Divider } from 'antd'; const { Title } = Typography; type SectionTitleProps = { title: string } const SectionTitle: React.FC = ({ title }) => { return (
{title}
) } export default SectionTitle