static getAllCustomers()

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


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