Olá.
No trecho:
const listarClientes = () => {
return fetch('http://localhost:4000/clientes')
.then( resposta => {
return resposta.json()
})
.then( json => {
return json
})
}
Qual a função do segundo then? parece uma redundância