Initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import {
|
||||
DefaultKeyboardShortcutsDialog,
|
||||
DefaultKeyboardShortcutsDialogContent,
|
||||
TldrawUiMenuItem,
|
||||
useTools,
|
||||
} from '@tldraw/tldraw';
|
||||
|
||||
export const PresentationKeyboardShortcutsDialog = () => {
|
||||
const tools = useTools();
|
||||
|
||||
return (
|
||||
<DefaultKeyboardShortcutsDialog onClose={() => {}}>
|
||||
<div style={{ backgroundColor: 'white' }}>
|
||||
<TldrawUiMenuItem {...tools['microphone']} />
|
||||
<TldrawUiMenuItem {...tools['cc-slide']} />
|
||||
<TldrawUiMenuItem {...tools['sticker']} />
|
||||
</div>
|
||||
<DefaultKeyboardShortcutsDialogContent />
|
||||
</DefaultKeyboardShortcutsDialog>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user