comparison src/ingest/IngestStatus.ts @ 13:b73941c4dc0a

more wip on ingest page; shared styles
author drewp@bigasterisk.com
date Sat, 15 Apr 2023 16:11:23 -0700
parents
children 071943adf000
comparison
equal deleted inserted replaced
12:e60be5d74c07 13:b73941c4dc0a
1 import { LitElement, html, css } from "lit";
2 import { customElement, property } from "lit/decorators.js";
3
4 @customElement("ingest-status")
5 export class IngestStatus extends LitElement {
6
7 static styles = [
8 css`
9 `,
10 ];
11 render() {
12 return html`
13
14 <table>
15 <thead><th>Source</th><th>Status</th></thead>
16 <tbody id="processing">
17 </tbody>
18 </table>
19 `;
20 }
21 }