blob: 09220b1bd95c4b588c7309e8dac37320766795fb [file] [log] [blame]
Adrià Vilanova Martínezf276ac72022-10-13 22:16:22 +02001import {html, LitElement} from 'lit';
2
3export default class WFList extends LitElement {
4 render() {
5 return html`<p>Temporary placeholder where the workflows list will exist.</p>`;
6 }
7}
8window.customElements.define('wf-list', WFList);