static getTopProducts()

in src/api/productApi.js [16:22]


    static getTopProducts() {
        return fetch('/api/products/top').then(response => {
            return response.json();
        }).catch(error => {
            return error;
        });
    }