nitro-react/src/hooks/draggable-window/DraggableWindow.tsx

12 lines
346 B
TypeScript
Raw Normal View History

2021-04-19 18:34:31 +02:00
import Draggable from 'react-draggable';
import { DraggableWindowProps } from './DraggableWindow.types';
export function DraggableWindow(props: DraggableWindowProps): JSX.Element
{
return (
<Draggable handle={ props.handle } bounds="parent" { ...props.draggableOptions }>
{ props.children }
</Draggable>
);
}