A react component holds any child component with a handlebar to resize itself vertically
npm install @thminggg/react-vertical-resizableimport { VerticalResizable } from "@thminggg/react-vertical-resizable";
const Component = () => {
return (
<VerticalResizable>
<p>Child Component</p>
</VerticalResizable>
);
};