Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.renchi.ai/llms.txt

Use this file to discover all available pages before exploring further.

  • TransferDialog - Transfer call with AI context summary * Features: - Target team/person selection - AI-generated context summary (editable) - Copy button for context - Additional notes field - Microsoft Teams integration ready

Props

open
boolean
required
open
onOpenChange
(open: boolean) => void
required
onOpenChange
customerName
string
required
customerName
contextSummary
string
required
contextSummary
onTransferInitiated
(targetTeam: string, summary: string, notes: string) => void
onTransferInitiated

Usage

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

export default function Example() {
  return (
    <TransferDialog open={open} onOpenChange={onOpenChange} customerName={customerName} contextSummary={contextSummary} />
  );
}