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