Files
twenty/packages/twenty-front/src/modules/workflow/states/workflowLastCreatedStepIdState.ts

7 lines
222 B
TypeScript

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