diff src/ingest/IngestDrop.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 53d99454f394
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ingest/IngestDrop.ts	Sat Apr 15 16:11:23 2023 -0700
@@ -0,0 +1,16 @@
+import { LitElement, html, css } from "lit";
+import { customElement, property } from "lit/decorators.js";
+
+@customElement("ingest-drop")
+export class IngestDrop extends LitElement {
+
+  static styles = [
+    css`
+    `,
+  ];
+  render() {
+    return html`
+    <div id="drop">Drop video urls here</div>
+    `;
+  }
+}