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