static getAllProducts()

in src/api/productApi.js [2:8]


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