render()

in src/nodes/shared/token-classification-viewer.ts [54:66]


  render() {
    if (!this.tokens) {
      return html`<div class="container">No tokens</div>`;
    }
    return html`<div class="container">
      <div>
        ${this.processTokens(this.tokens)}
        <style>
          ${TOKEN_CLASSIFICATION_NODE_STYLE}
        </style>
      </div>
    </div>`;
  }