File size: 351 Bytes
cd46bb2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Typography } from 'antd';

const { Title, Paragraph } = Typography;

interface IProps {
  title: string;
  description: string;
}

const SettingTitle = ({ title, description }: IProps) => {
  return (
    <div>
      <Title level={5}>{title}</Title>
      <Paragraph>{description}</Paragraph>
    </div>
  );
};

export default SettingTitle;