static getProductCustomers()

in src/api/productApi.js [23:29]


    static getProductCustomers(id) {
        return fetch('/api/products/' + id + '/customers').then(response => {
            return response.json();
        }).catch(error => {
            return error;
        });
    }