7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const internalHotkeysEnabledScopesState = atom<string[]>({
|
|
key: 'internalHotkeysEnabledScopesState',
|
|
default: [],
|
|
});
|