Initial commit

This commit is contained in:
2025-07-11 13:21:49 +00:00
commit 8a7ab3ac24
262 changed files with 28219 additions and 0 deletions
@@ -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>
);
};