mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 09:26:43 +01:00
11 lines
No EOL
252 B
JavaScript
11 lines
No EOL
252 B
JavaScript
import DefaultKeymap from './keymaps/default';
|
|
|
|
import {createToken} from "../../../../modules/bus/index";
|
|
|
|
export function activate({bus}) {
|
|
bus.enableState(TOKENS.KEYMAP, DefaultKeymap);
|
|
}
|
|
|
|
export const TOKENS = {
|
|
KEYMAP: createToken('keymap')
|
|
}; |