mirror of
https://github.com/nolanlawson/pinafore
synced 2025-02-02 14:56:48 +01:00
13 lines
290 B
JavaScript
13 lines
290 B
JavaScript
import ComposeDialog from './ComposeDialog.html'
|
|
import { createDialogElement } from './createDialogElement'
|
|
|
|
export function showComposeDialog () {
|
|
let dialog = new ComposeDialog({
|
|
target: createDialogElement(),
|
|
data: {
|
|
label: 'Compose dialog'
|
|
}
|
|
})
|
|
dialog.show()
|
|
}
|