Source: components/filter/filter-result/product/product-item/product-grid-item.js

import jQ from "jquery";
import ProductItem from "./product-item";

/**
 * Prodict grid item
 * @extends ProductItem
 */
class ProductGridItem extends ProductItem {
	/**
	 * @constructs
	 */
	constructor() {
		super();
	}

	/**
	 * Replace the brackets in raw html template with proper values
	 * @returns {String} HTML string
	 */
	compileTemplate() {
		throw Error('Missing buildProductGridItem function in theme lib');
	}
}

export default ProductGridItem;