

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

type LeftDependencyDraggableProps = {
  block: IGanttBlock;
  ganttContainerRef: RefObject<HTMLDivElement>;
};

export function LeftDependencyDraggable(_props: LeftDependencyDraggableProps) {
  return <></>;
}
