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