Task lists WIP

This commit is contained in:
John Livingston
2024-04-30 18:30:44 +02:00
parent ca026c2e10
commit 22561b4daa
13 changed files with 205 additions and 10 deletions

View File

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