---
order: 2
title:
zh-CN: 居中
en-US: Centered
---
## zh-CN
标签居中展示。
## en-US
Centered tabs.
```jsx
import { Tabs } from 'antd';
const { TabPane } = Tabs;
const Demo = () => (
Content of Tab Pane 1
Content of Tab Pane 2
Content of Tab Pane 3
);
ReactDOM.render(, mountNode);
```