import {AInstantView} from 'tdp_core'; export class DummyInstantView extends AInstantView { protected initImpl() { super.initImpl(); this.build(); } private build() { const items = this.selection.items; this.node.innerHTML = `
| ID | ${items.map((d) => `${d._id} | `).join('')}
|---|---|
| Name | ${items.map((d) => `${d.id} | `).join('')}
| Label | ${items.map((d) => `${d.text} | `).join('')}