addTask skeleton

This commit is contained in:
Ian Gulliver
2024-12-22 10:23:37 -08:00
parent 721b382e63
commit 3ac8302f11
21 changed files with 381 additions and 99 deletions

11
ts/slelem.ts Normal file
View File

@@ -0,0 +1,11 @@
import { ElemWrapper } from "./elemwrapper";
export class SLElem extends ElemWrapper {
constructor(tagName: string) {
super(document.createElement(tagName));
}
public setSlot(slot: string) {
this.setAttribute("slot", slot);
}
}