# 卡片式页签 - order: 8 另一种样式的页签,不提供对应的垂直样式。 --- ````jsx import { Tabs } from 'antd'; const TabPane = Tabs.TabPane; function callback(key) { console.log(key); } ReactDOM.render( 选项卡一内容 选项卡二内容 选项卡三内容 , mountNode); ````