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