9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import { createState } from '@ui/utilities/state/utils/createState';
|
|
|
|
export const workflowCreateStepFromParentStepIdState = createState<
|
|
string | undefined
|
|
>({
|
|
key: 'workflowCreateStepFromParentStepId',
|
|
defaultValue: undefined,
|
|
});
|