wepa again i'm doin itnpm i profile-components i added this npm package for profile views

This commit is contained in:
Miguel 2024-09-09 09:30:15 -04:00
parent 82e462a7f7
commit 396b47a6f7

View file

@ -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.
}
}