mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 22:59:33 +01:00
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
type Props = {
|
|
parentStateId: string;
|
|
className?: string;
|
|
};
|
|
|
|
export const WorkFlowDisabledMessage = (props: Props) => <></>;
|