bl-table
v6.11.2-0
Published
table ui component for react
Downloads
3
Maintainers
Readme
rc-table
React table component.
install
Development
npm install
npm start
Example
http://react-component.github.io/table/examples/
Usage
import Table from 'rc-table';
const columns = [{
title: 'Name', dataIndex: 'name', key:'name', width: 100,
}, {
title: 'Age', dataIndex: 'age', key:'age', width: 100,
}, {
title: 'Address', dataIndex: 'address', key:'address', width: 200,
}, {
title: 'Operations', dataIndex: '', key:'operations', render: () => <a href="#">Delete</a>,
}];
const data = [
{ name: 'Jack', age: 28, address: 'some where', key:'1' },
{ name: 'Rose', age: 36, address: 'some where', key:'2' },
];
React.render(<Table columns={columns} data={data} />, mountNode);
API
Properties
Column Props
License
rc-table is released under the MIT license.