import { html } from 'lit' import { repeat } from 'lit/directives/repeat.js' import { __ } from 'i18n' import { tplMucAddTaskForm } from './muc-task' export default function tplMucTaskList (el, tasklist) { const tasks = tasklist.getTasks() // eslint-disable-next-line no-undef const i18nDelete = __(LOC_task_list_delete) // eslint-disable-next-line no-undef const i18nCreateTask = __(LOC_task_create) // eslint-disable-next-line no-undef const i18nTaskListName = __(LOC_task_list_name) return html`