peertube-plugin-livechat/conversejs/custom/plugins/tasks/templates/muc-task.js

9 lines
152 B
JavaScript
Raw Normal View History

2024-04-30 16:30:44 +00:00
import { html } from 'lit'
export default function tplMucTask (task) {
return html`
<div class="">
Task: ${task.get('name')}
</div>`
}