9 lines
284 B
TypeScript
9 lines
284 B
TypeScript
import { RefObject } from "react";
|
|
import type { IGanttBlock } from "@plane/types";
|
|
|
|
type LeftDependencyDraggableProps = {
|
|
block: IGanttBlock;
|
|
ganttContainerRef: RefObject<HTMLDivElement>;
|
|
};
|
|
|
|
export const LeftDependencyDraggable = (props: LeftDependencyDraggableProps) => <></>;
|