Mercurial > code > home > repos > video
view src/ingest/IngestStatus.ts @ 16:838eb0223bdb
cp mongo_required
author | drewp@bigasterisk.com |
---|---|
date | Sun, 16 Apr 2023 03:17:48 -0700 |
parents | b73941c4dc0a |
children | 071943adf000 |
line wrap: on
line source
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> `; } }