import { Typography } from 'antd'; const { Title, Paragraph } = Typography; interface IProps { title: string; description: string; } const SettingTitle = ({ title, description }: IProps) => { return (
{title} {description}
); }; export default SettingTitle;