import { compose } from "recompose"; import { withNodeDropTarget, withHoverVariant, WithNodeDropTargetProps, withDndContext } from "./dnd-controller"; import { TreeMoveOffset } from "tandem-common"; export type Props = WithNodeDropTargetProps & React.HTMLAttributes; export default compose( withDndContext, withNodeDropTarget(TreeMoveOffset.BEFORE), withHoverVariant );