Skip to main content
  • CustomerCallHistory Component * Displays a list of all bookings for a customer, sorted newest first. Each row is clickable and navigates to the conversation detail page. * For CSRs, this provides quick context on all previous interactions with the customer to enable personalized service.

Props

calls
CustomerCall[]
required
calls

Usage

import { CustomerCallHistory } from '@/components/CustomerCallHistory';

export default function Example() {
  return (
    <CustomerCallHistory calls={calls} />
  );
}