ade5e52e55
* Clean and re-organize post table refactoring * Fix tests
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
import { HotkeyScope } from '@/ui/utilities/hotkey/types/HotkeyScope';
|
|
|
|
export const parentHotkeyScopeForFieldScopedState = atomFamily<
|
|
HotkeyScope | null,
|
|
string
|
|
>({
|
|
key: 'parentHotkeyScopeForFieldScopedState',
|
|
default: null,
|
|
});
|