view src/VideoPage.ts @ 2:78c1a2983010

rewrite UI and file serving parts; use vite
author drewp@bigasterisk.com
date Mon, 20 Mar 2023 20:26:02 -0700
parents
children c8a41359505c
line wrap: on
line source

import { LitElement, html } from "lit";
import { customElement } from "lit/decorators.js";
export { VideoSection } from "./VideoSection";

@customElement("video-page")
export class VideoPage extends LitElement {
  render() {
    return html`
      <video-section title="tl1" manifest="/tl1.webm"></video-section>
      <video-section title="Henry Sugar" manifest="/vids/henry-sugar/manifest.mpd"></video-section>
      <video-section title="Henry Sugar bloopers" manifest="/vids/henry-sugar-bloopers/manifest.mpd"></video-section>
    `;
  }
}