Table - basic - English translation (#3325)

* Table - basic - English translation

Correction, to same as in line with other examplets

* Update basic.md

* Update basic.md
This commit is contained in:
kvetoslavnovak 2016-10-08 09:45:42 +02:00 committed by 偏右
parent 358308ce87
commit 7156956685

View File

@ -11,7 +11,7 @@ title:
## en-US
Simple table with operations.
Simple table with actions.
````jsx
import { Table, Icon } from 'antd';
@ -30,16 +30,16 @@ const columns = [{
dataIndex: 'address',
key: 'address',
}, {
title: 'Operation',
key: 'operation',
title: 'Action',
key: 'action',
render: (text, record) => (
<span>
<a href="#">Operation 一 {record.name}</a>
<a href="#">Action 一 {record.name}</a>
<span className="ant-divider" />
<a href="#">Next operation</a>
<a href="#">Delete</a>
<span className="ant-divider" />
<a href="#" className="ant-dropdown-link">
More <Icon type="down" />
More actions<Icon type="down" />
</a>
</span>
),