1.0.2 • Published 2 years ago

antd-resizable-table v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Jietu20220630-112451-HD

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} />
}