--- order: 1 title: zh-CN: 标题组件 en-US: Title Component --- ## zh-CN 展示不同级别的标题。 ## en-US Display title in different level. ```tsx import { Typography } from 'antd'; import React from 'react'; const { Title } = Typography; const App: React.FC = () => ( <> h1. Ant Design h2. Ant Design h3. Ant Design h4. Ant Design h5. Ant Design ); export default App; ```