class TradeStructureMarketTable extends HTMLElement { connectedCallback() { this.innerHTML = `
  Exports Rank Imports  
France 15.0% 1 Germany 10.6%
Germany 10.1% 2 China 10.1%
Italy 8.3% 3 France 8.8%
Portugal 8.0% 4 United States 6.5%
United Kingdom 5.8% 5 Italy 6.3%
`; } } customElements.define( "trade-structure-market-table", TradeStructureMarketTable );