From 385c82303037935dc3732d2ef1b8213e5abcb244 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sat, 24 Jun 2023 17:50:51 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/8526 --- app/src/plugin/commandPanel.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/src/plugin/commandPanel.ts diff --git a/app/src/plugin/commandPanel.ts b/app/src/plugin/commandPanel.ts new file mode 100644 index 000000000..2ddfda4be --- /dev/null +++ b/app/src/plugin/commandPanel.ts @@ -0,0 +1,8 @@ +import {Dialog} from "../dialog"; + +export const commandPanel = () => { + const panel = new Dialog({ + title: window.siyuan.languages.commandPanel, + content:`
` + }) +}