dees-catalog/ts_web/elements/dees-modal.demo.ts
2023-09-13 01:37:02 +02:00

22 lines
543 B
TypeScript

import { html } from '@design.estate/dees-element';
import { DeesModal } from './dees-modal.js';
export const demoFunc = () => html`
<dees-button @click=${() => {
DeesModal.createAndShow({
heading: 'This is a heading',
content: html`
<dees-form>
<dees-input-text
.label=${'Username'}
>
</dees-input-text>
<dees-input-text
.label=${'Password'}
>
</dees-input-text>
</dees-form>
`
});
}}>open modal</dees-button>
`