annotate 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 |
rev |
line source |
13
|
1 import { LitElement, html, css } from "lit";
|
|
2 import { customElement, property } from "lit/decorators.js";
|
|
3
|
|
4 @customElement("ingest-drop")
|
|
5 export class IngestDrop extends LitElement {
|
|
6
|
|
7 static styles = [
|
|
8 css`
|
|
9 `,
|
|
10 ];
|
|
11 render() {
|
|
12 return html`
|
|
13 <div id="drop">Drop video urls here</div>
|
|
14 `;
|
|
15 }
|
|
16 }
|