Files
plane/web/ce/components/workflow/state-transition-count.tsx

8 lines
174 B
TypeScript

import { IStateWorkFlow } from "@/plane-web/types";
type Props = {
currentTransitionMap?: IStateWorkFlow;
};
export const StateTransitionCount = (props: Props) => <></>;