--- order: 0 title: zh-CN: 典型卡片 en-US: Basic card --- ## zh-CN 包含标题、内容、操作区域。 ## en-US A basic card containing a title, content and an extra corner content. Supports two sizes: `default` and `small`. ```tsx import { Card } from 'antd'; import React from 'react'; const App: React.FC = () => ( <> More} style={{ width: 300 }}>

Card content

Card content

Card content

More} style={{ width: 300 }}>

Card content

Card content

Card content

); export default App; ```