12345678910111213141516 |
- import { LogseqContext } from '../../lib/logseq-context'
- import * as React from 'react'
- export const KeyboardShortcut = ({
- action, shortcut, opts,
- ...props
- }: Partial<{ action: string, shortcut: string, opts: any }> & React.HTMLAttributes<HTMLElement>) => {
- const { renderers } = React.useContext(LogseqContext)
- const Shortcut = renderers?.KeyboardShortcut
- return (
- <div className="tl-menu-right-slot" {...props}>
- <Shortcut action={action} shortcut={shortcut} opts={opts} />
- </div>
- )
- }
|