class TradeStructureMarketTable extends HTMLElement { connectedCallback() { this.innerHTML = `
  Exports Rank Imports  
Switzerland 22.8% 1 Switzerland 14.6%
Germany 13.1% 2 China 13.5%
Italy 9.4% 3 Germany 9.3%
Croatia 7.4% 4 Italy 7.9%
Austria 6.2% 5 Austria 4.8%
`; } } customElements.define( "trade-structure-market-table", TradeStructureMarketTable );