render()

in client/src/components/link.js [40:46]


  render() {
    return html`
      <a href="${this.href}" @click="${this.onClick}">
        <slot></slot>
      </a>
    `;
  }