class TradeStructureMarketTable extends HTMLElement { connectedCallback() { this.innerHTML = `
  Exports Rank Imports  
Italy 11.5% 1 Germany 10.1%
Bulgaria 6.8% 2 China 8.4%
Germany 6.6% 3 Italy 7.5%
Cyprus 6.1% 4 Iraq 6.4%
United States 4.2% 5 Netherlands 5.9%
`; } } customElements.define( "trade-structure-market-table", TradeStructureMarketTable );