2713285a0f
* Migrate dropdown to scope map * Run lintr * Move Dropdown Scope internally * Fix * Fix lint --------- Co-authored-by: Thomas Trompette <thomast@twenty.com> Co-authored-by: Charles Bochet <charles@twenty.com>
7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
import { createStateScopeMap } from '@/ui/utilities/recoil-scope/utils/createStateScopeMap';
|
|
|
|
export const isDropdownOpenStateScopeMap = createStateScopeMap<boolean>({
|
|
key: 'isDropdownOpenStateScopeMap',
|
|
defaultValue: false,
|
|
});
|