mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-30 13:28:48 +01:00
9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
|
|
import {Dialog} from "../dialog";
|
||
|
|
|
||
|
|
export const commandPanel = () => {
|
||
|
|
const panel = new Dialog({
|
||
|
|
title: window.siyuan.languages.commandPanel,
|
||
|
|
content:`<div></div>`
|
||
|
|
})
|
||
|
|
}
|