import React from 'react'; import { Resizable } from 'react-resizable'; const XuiResizableTh = props => { const { onResize, width, ...restProps } = props; if (!width) { return ; } return ( { e.stopPropagation(); }} /> } onResize={onResize} draggableOpts={{ enableUserSelectHack: false }} > ); }; export default XuiResizableTh;