2024-09-09 13:30:15 +00:00
|
|
|
export class ProfileView extends HTMLElement {
|
2024-08-26 19:13:00 +00:00
|
|
|
|
|
|
|
constructor() {
|
2024-09-09 12:53:02 +00:00
|
|
|
super();
|
2024-08-26 19:13:00 +00:00
|
|
|
}
|
2024-09-09 12:53:02 +00:00
|
|
|
|
2024-09-09 13:30:15 +00:00
|
|
|
const prof_view = document.createElement("span");
|
|
|
|
|
|
|
|
prof_view.setAttribute("class", "wrapper")
|
|
|
|
|
|
|
|
connectedCallback() {
|
|
|
|
this.
|
|
|
|
}
|
2024-08-26 19:13:00 +00:00
|
|
|
}
|