<DndProvider backend={HTML5Backend}>
<Table
columns={columns}
locale={{ emptyText: ‘empty‘ }}
components={this.components}
dataSource={[]}
pagination={false}
onRow={(record, index) => ({
index,
record,
onMouseDown: this.mouseDownRow.bind(this, record),
moveRow: this.moveRow.bind(this, record),
})}
/>
</DndProvider>
moveRow = (record, dragKey, hoverKey) => {}
mouseDownRow = (record) => {
this.dragRow = record;
}