diff --git a/src/pages/ClientsPage.tsx b/src/pages/ClientsPage.tsx index cfb62bc..e876d25 100644 --- a/src/pages/ClientsPage.tsx +++ b/src/pages/ClientsPage.tsx @@ -10,6 +10,7 @@ import { User } from "../types/User"; import { Client } from "../types/Client"; import { useDebounce } from "@uidotdev/usehooks"; import pluralize from "../utils/pluralize"; +import ChevronRightIcon from "../components/icons/ChevronRightIcon"; function ClientsPage() { const [limit, setLimit] = useState(10); @@ -95,15 +96,29 @@ function ClientsPage() { -
{name}
+ clients?.map(({ name, email, phone }) => ( +{name}
+{phone}
+{email ? "• " + email : ""}
+