mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
11 lines
375 B
TypeScript
11 lines
375 B
TypeScript
|
|
import { observer } from "mobx-react";
|
||
|
|
|
||
|
|
export type TWorkflowDisabledOverlayProps = {
|
||
|
|
messageContainerRef: React.RefObject<HTMLDivElement>;
|
||
|
|
workflowDisabledSource: string;
|
||
|
|
shouldOverlayBeVisible: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
|
export const WorkFlowDisabledOverlay = observer((props: TWorkflowDisabledOverlayProps) => <></>);
|