import { memo } from 'react'; import { Kbd } from '@chakra-ui/react'; import { deviceAlt, deviceMod } from '../../../common/utils/deviceUtils'; import style from './EventEditorEmpty.module.scss'; export default memo(EventEditorEmpty); function EventEditorEmpty() { return (
Select an event to edit
Shortcut navigation
{deviceAlt} + / Select entry
{deviceAlt} + {deviceMod} + / Reorder selected entry
{deviceAlt} + E Add event below
{deviceAlt} + + E Add event above
{deviceAlt} + B Add block below
{deviceAlt} + + B Add block above
{deviceAlt} + D Add delay below
{deviceAlt} + + D Add delay above
Esc Deselect entry
{deviceMod} + Delete selected entry
{deviceMod} + C Copy selected entry
{deviceMod} + + V Paste above
{deviceMod} + V Paste below
); } function AuxKey({ children }: { children: React.ReactNode }) { return {children}; }