Files
twenty/packages/twenty-front/src/modules/ui/feedback/dialog-manager/states/dialogInternalScopedState.ts
2023-12-10 18:10:54 +01:00

17 lines
383 B
TypeScript

import { createScopedState } from '@/ui/utilities/recoil-scope/utils/createScopedState';
import { DialogOptions } from '../types/DialogOptions';
type DialogState = {
maxQueue: number;
queue: DialogOptions[];
};
export const dialogInternalScopedState = createScopedState<DialogState>({
key: 'dialog/internal-state',
defaultValue: {
maxQueue: 2,
queue: [],
},
});