import { PropsWithChildren, memo } from 'react'; import * as Editor from '../../../common/components/editor-utils/EditorUtils'; import Kbd from '../../../common/components/kbd/Kbd'; import { deviceAlt, deviceMod } from '../../../common/utils/deviceUtils'; import style from './EventEditorEmpty.module.scss'; export default memo(EventEditorEmpty); function EventEditorEmpty() { return (
Rundown shortcuts
); } function ShortcutGroup({ title, children }: PropsWithChildren<{ title: string }>) { return (

{title}

{children}
); } function Shortcut({ label, children }: PropsWithChildren<{ label: string }>) { return (
{label} {children}
); } function Combo({ keys }: { keys: string[] }) { return ( {keys.map((key) => ( {key} ))} ); } function Separator() { return /; }