diff --git a/frontend/ts/profile-element.ts b/frontend/ts/profile-element.ts index c0cf31e..a89bc67 100644 --- a/frontend/ts/profile-element.ts +++ b/frontend/ts/profile-element.ts @@ -1,8 +1,14 @@ -export class ProfileElement extends HTMLElement { +export class ProfileView extends HTMLElement { constructor() { super(); } - let html = "" + const prof_view = document.createElement("span"); + + prof_view.setAttribute("class", "wrapper") + + connectedCallback() { + this. + } }