* 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>
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
import { createStateScopeMap } from '@/ui/utilities/recoil-scope/utils/createStateScopeMap';
|
|
|
|
export const dropdownWidthStateScopeMap = createStateScopeMap<
|
|
number | undefined
|
|
>({
|
|
key: 'dropdownWidthStateScopeMap',
|
|
defaultValue: 160,
|
|
});
|