blob: 09220b1bd95c4b588c7309e8dac37320766795fb [file] [log] [blame]
import {html, LitElement} from 'lit';
export default class WFList extends LitElement {
render() {
return html`<p>Temporary placeholder where the workflows list will exist.</p>`;
}
}
window.customElements.define('wf-list', WFList);