Task lists WIP

This commit is contained in:
John Livingston
2024-04-30 17:11:10 +02:00
parent ad090eaca4
commit ca026c2e10
10 changed files with 187 additions and 12 deletions

View File

@ -0,0 +1,7 @@
import { html } from 'lit'
export default function tplMucTaskList (tasklist) {
return html`<div class="">
Tasklist: ${tasklist.get('name')}
</div>`
}