wepa again i'm doin itnpm i profile-components i added this npm package for profile views
This commit is contained in:
parent
82e462a7f7
commit
396b47a6f7
1 changed files with 8 additions and 2 deletions
|
@ -1,8 +1,14 @@
|
||||||
export class ProfileElement extends HTMLElement {
|
export class ProfileView extends HTMLElement {
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
let html = ""
|
const prof_view = document.createElement("span");
|
||||||
|
|
||||||
|
prof_view.setAttribute("class", "wrapper")
|
||||||
|
|
||||||
|
connectedCallback() {
|
||||||
|
this.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue