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