Variable tableFiltersPopoverAtomConst

tableFiltersPopoverAtom: WritableAtom<TableFiltersPopoverState, Partial<TableFiltersPopoverState>, void> & WithInitialValue<TableFiltersPopoverState> = ...

Store table filter popover state. Calling the set function resets props.

Example

Basic usage:

const openTableFiltersPopover = useSetAtom(tableFiltersPopoverAtom, projectScope);
openTableFiltersPopover({ query: ... });

Example

Close:

openTableFiltersPopover({ open: false })

Generated using TypeDoc