import { useState } from 'react' import { FileText, Play } from 'lucide-react' import { useAppStore } from '@/store/appStore' import { wordCount } from '@/lib/utils' const SAMPLE = `Agent: Thanks for joining. We saw improved adoption this quarter.\nCustomer: We plan to expand to 3 more teams next month.\nAgent: Pricing will remain the same.\nCustomer: If support SLAs slip again, we may churn.` export function TranscriptPanel() { const [text, setText] = useState('') const startRun = useAppStore((s) => s.startRun) function loadSample() { setText(SAMPLE) } return (