refactor: rename ui/filter-n-sort to ui/view-bar (#1475)
Closes #1473 Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
import { atomFamily } from 'recoil';
|
||||
|
||||
import { FilterOperand } from '../types/FilterOperand';
|
||||
|
||||
export const selectedOperandInDropdownScopedState = atomFamily<
|
||||
FilterOperand | null,
|
||||
string
|
||||
>({
|
||||
key: 'selectedOperandInDropdownScopedState',
|
||||
default: null,
|
||||
});
|
||||
Reference in New Issue
Block a user