docs: Table - Loading - English Translation (#3276)

This commit is contained in:
kvetoslavnovak 2016-10-02 02:37:14 +02:00 committed by Benjy Cui
parent 2e4e159ed8
commit 5373f52d27

View File

@ -17,30 +17,30 @@ Controll loading states by `loading` property.
import { Table, Button } from 'antd'; import { Table, Button } from 'antd';
const columns = [{ const columns = [{
title: '姓名', title: 'Name',
dataIndex: 'name', dataIndex: 'name',
}, { }, {
title: '年龄', title: 'Age',
dataIndex: 'age', dataIndex: 'age',
}, { }, {
title: '住址', title: 'Address',
dataIndex: 'address', dataIndex: 'address',
}]; }];
const data = [{ const data = [{
key: '1', key: '1',
name: '胡彦斌', name: 'John Brown',
age: 32, age: 32,
address: '西湖区湖底公园1号', address: 'New York No. 1 Lake Park',
}, { }, {
key: '2', key: '2',
name: '胡彦祖', name: 'Jim Green',
age: 42, age: 42,
address: '西湖区湖底公园1号', address: 'London No. 1 Lake Park',
}, { }, {
key: '3', key: '3',
name: '李大嘴', name: 'Joe Black',
age: 32, age: 32,
address: '西湖区湖底公园1号', address: 'Sidney No. 1 Lake Park',
}]; }];
const App = React.createClass({ const App = React.createClass({
@ -58,7 +58,7 @@ const App = React.createClass({
return ( return (
<div> <div>
<Table columns={columns} dataSource={data} loading={this.state.loading} /> <Table columns={columns} dataSource={data} loading={this.state.loading} />
<Button type="primary" onClick={this.toggleLoading}>切换 loading 状态</Button> <Button type="primary" onClick={this.toggleLoading}>Switch loading state</Button>
</div> </div>
); );
}, },