antd-resizable-table
v1.0.2
Published
``` npm i antd-resizable-table yarn add antd-resizable-table ```
Downloads
146
Readme
Useage
npm i antd-resizable-table
yarn add antd-resizable-table
const columns = [
{
title: 'Date',
dataIndex: 'date',
width: 200,
},
{
title: 'Amount',
dataIndex: 'amount',
width: 100,
},
{
title: 'Type',
dataIndex: 'type',
width: 100,
},
{
title: 'Note',
dataIndex: 'note',
width: 100,
},
{
title: 'Action',
key: 'action',
},
]
const dataSource = [
{
key: 0,
date: '2018-02-11',
amount: 120,
type: 'income',
note: 'transfer',
},
{
key: 1,
date: '2018-03-11',
amount: 243,
type: 'income',
note: 'transfer',
},
{
key: 2,
date: '2018-04-11',
amount: 98,
type: 'income',
note: 'transfer',
},
]
const App = () => {
return <ResizableTable columns={columns} dataSource={dataSource} />
}