docs: Table - size - English Translation (#3272)

This commit is contained in:
kvetoslavnovak 2016-10-02 02:38:54 +02:00 committed by Benjy Cui
parent 27a53b5c6c
commit a7b9266e10

View File

@ -17,36 +17,36 @@ Two compacted table size: `middle` and `small`, `small` size is used in Modal on
import { Table } from 'antd';
const columns = [{
title: '姓名',
title: 'Name',
dataIndex: 'name',
}, {
title: '年龄',
title: 'Age',
dataIndex: 'age',
}, {
title: '住址',
title: 'Address',
dataIndex: 'address',
}];
const data = [{
key: '1',
name: '胡彦斌',
name: 'John Brown',
age: 32,
address: '西湖区湖底公园1号',
address: 'New York No. 1 Lake Park',
}, {
key: '2',
name: '胡彦祖',
name: 'Jim Green',
age: 42,
address: '西湖区湖底公园1号',
address: 'London No. 1 Lake Park',
}, {
key: '3',
name: '李大嘴',
name: 'Joe Black',
age: 32,
address: '西湖区湖底公园1号',
address: 'Sidney No. 1 Lake Park',
}];
ReactDOM.render(<div>
<h4>中号表格(紧凑型)</h4>
<h4>No. Form (Middle size table)</h4>
<Table columns={columns} dataSource={data} size="middle" />
<h4>小号表格</h4>
<h4>Small size table</h4>
<Table columns={columns} dataSource={data} size="small" />
</div>, mountNode);
````