import React, { Component } from 'react'; import { Button, ButtonGroup, Container, Table } from 'reactstrap'; import AppNavbar from './AppNavbar'; import { Link } from 'react-router-dom'; class ClientList extends Component { constructor(props) { super(props); this.state = {clients: []}; this.remove = this.remove.bind(this); } componentDidMount() { fetch('/clients') .then(response => response.json()) .then(data => this.setState({clients: data})); } async remove(id) { await fetch(`/clients/${id}`, { method: 'DELETE', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' } }).then(() => { let updatedClients = [...this.state.clients].filter(i => i.id !== id); this.setState({clients: updatedClients}); }); } render() { const {clients} = this.state; const clientList = clients.map(client => { return {client.name} {client.email} }); return (

Clients

{clientList}
Name Email Actions
); } } export default ClientList;