diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ingest/IngestStatus.ts	Sat Apr 15 16:11:23 2023 -0700
@@ -0,0 +1,21 @@
+import { LitElement, html, css } from "lit";
+import { customElement, property } from "lit/decorators.js";
+
+@customElement("ingest-status")
+export class IngestStatus extends LitElement {
+
+  static styles = [
+    css`
+    `,
+  ];
+  render() {
+    return html`
+
+<table>
+      <thead><th>Source</th><th>Status</th></thead>
+      <tbody id="processing">
+      </tbody>
+    </table>
+    `;
+  }
+}