underbbs/frontend/ts/profile-element.ts

14 lines
247 B
TypeScript

export class ProfileView extends HTMLElement {
constructor() {
super();
}
const prof_view = document.createElement("span");
prof_view.setAttribute("class", "wrapper")
connectedCallback() {
this.
}
}