import { html } from 'lit' export default function tplMucTask (task) { const done = task.get('done') return html`
{ task.save('done', !done) }} /> ${task.get('name')}
` }