Mercurial > code > home > repos > video
annotate 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 |
rev | line source |
---|---|
13 | 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 } |