mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
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)
|