6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
type Props = {
|
|
parentStateId: string;
|
|
className?: string;
|
|
};
|
|
|
|
export const WorkFlowDisabledMessage = (props: Props) => <></>;
|