{activeId ? (
{
- const { onResize, width, dragAttributes, dragListeners, ...restProps } = props;
+ const { onResize, onResizeStart, onResizeStop, width, dragAttributes, dragListeners, ...restProps } = props;
if (!width) {
return
| ;
@@ -10,11 +11,16 @@ const ResizableComponent = forwardRef((props, ref) => {
return (
}
+ resizeHandles={["e"]}
+ handle={(axis, handleRef) => (
+
+ )}
>
|