12 lines
263 B
TypeScript
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,
|
|
});
|