Files
twenty_crm/front/src/modules/ui/table/editable-cell/states/customCellHotkeyScopeScopedState.ts
Lucas Bordeau 62720944fa Feat/open input not focus (#811)
* Fixed click outside

* Finished

* Fixed tests
2023-07-21 22:09:02 -07:00

12 lines
263 B
TypeScript

import { atomFamily } from 'recoil';
import { HotkeyScope } from '../../../hotkey/types/HotkeyScope';
export const customCellHotkeyScopeScopedState = atomFamily<
HotkeyScope | null,
string
>({
key: 'customCellHotkeyScopeScopedState',
default: null,
});