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:
Thaïs
2023-09-06 16:46:02 +02:00
committed by GitHub
parent 28ca9a9e49
commit d6b89359f5
81 changed files with 108 additions and 111 deletions

View File

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