index.jsx 353 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12
import React, { Component } from 'react';
import { Resizable } from 'react-resizable';

function Resizecell({ onResize, onResizeStop, width, onClick, ...restProps }) {
  return (
    <Resizable width={width ?? 1} height={0} onResize={onResize} onResizeStop={onResizeStop}>
      <th {...restProps} />
    </Resizable>
  );
}

export default Resizecell;