feat: Add basic shortcuts (#1436)

This commit is contained in:
Serge Zaitsev
2025-11-24 12:35:31 +01:00
committed by GitHub
parent 6e44b2ad19
commit 561d2c77d4
7 changed files with 277 additions and 11 deletions
@@ -0,0 +1,8 @@
/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
import { createContext } from 'react';
export default createContext([null, null]);
+2 -1
View File
@@ -4,5 +4,6 @@
*/
import ClosableContext from './ClosableContext';
import BoardShortcutsContext from './BoardShortcutsContext';
export { ClosableContext }; // eslint-disable-line import/prefer-default-export
export { ClosableContext, BoardShortcutsContext };