Move style related actions to templates

This commit is contained in:
barsdeveloper
2021-12-10 21:05:44 +01:00
parent 7bc0f4e2f2
commit 6b02ab7e08
19 changed files with 2693 additions and 139 deletions

15
js/graph/GraphPin.js Normal file
View File

@@ -0,0 +1,15 @@
import GraphElement from "./GraphElement"
import PinTemplate from "../template/PinTemplate"
export default class GraphPin extends GraphElement {
constructor() {
super({}, new PinTemplate())
}
/*connectedCallback() {
super.connectedCallback()
}*/
}
customElements.define("u-pin", GraphPin)