player skeleton frontend

This commit is contained in:
2025-03-30 00:45:45 -05:00
parent 307aa09640
commit f11560c3bf
9 changed files with 64 additions and 60 deletions
@@ -0,0 +1,14 @@
import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
const seekBar = () => html`
<progress></progress>
`;
@customElement('seek-bar')
export class SeekBar extends LitElement {
render() {
return seekBar();
}
}