commercetools-8.x-1.2-alpha1/modules/commercetools_decoupled/js/atoms/NoProductsFound.js
modules/commercetools_decoupled/js/atoms/NoProductsFound.js
class NoProductsFound extends HTMLElement {
connectedCallback() {
this.classList.add('no-products');
this.innerHTML = `<p>${Drupal.t('No products found.')}</p>`;
}
}
customElements.define('ct-no-products-found', NoProductsFound);
