1.0.1 • Published 6 years ago

resizable-antd-table v1.0.1

Weekly downloads
156
License
ISC
Repository
github
Last release
6 years ago

resizable-antd-table

make ant-design table column resizable, highly inspire by resize-antd-table.

usage

npm install resizable-antd-table

import ResizableAntdTable from 'resizable-antd-table';

...

const columns = [
  {title: 'a', dataIndex: 'a'},
  {title: 'b', dataIndex: 'b'},
];

const data = [
  {a: 1, b: 2},
  {a: 3, b: 4},
];

...

<ResizableAntdTable bordered={true} columns={columns} dataSource={data} />

demo

demo

1.0.1

6 years ago

1.0.0

6 years ago