

import type { IGanttBlock } from "@buzzwaretech/types";
import type { RefObject } from "react";

type RightDependencyDraggableProps = {
  block: IGanttBlock;
  ganttContainerRef: RefObject<HTMLDivElement>;
};
export function RightDependencyDraggable(
  _props: RightDependencyDraggableProps,
) {
  return <></>;
}
