Files
twenty_crm/front/src/modules/ui/view-bar/states/selectedOperandInDropdownScopedState.ts
2023-09-06 16:46:02 +02:00

12 lines
264 B
TypeScript

import { atomFamily } from 'recoil';
import { FilterOperand } from '../types/FilterOperand';
export const selectedOperandInDropdownScopedState = atomFamily<
FilterOperand | null,
string
>({
key: 'selectedOperandInDropdownScopedState',
default: null,
});