Files
twenty_crm/front/src/modules/ui/layout/dropdown/states/dropdownWidthScopedState.ts
Alfred Louis 350410b0fe fix: update dropdown width (#2181)
* fix: update dropdown width

* fix conflict

* refactor dropdown width state
2023-10-24 16:21:51 +02:00

7 lines
236 B
TypeScript

import { createScopedState } from '@/ui/utilities/recoil-scope/utils/createScopedState';
export const dropdownWidthScopedState = createScopedState<number | undefined>({
key: 'dropdownWidthScopedState',
defaultValue: 160,
});