import { ChatContext } from '../chat/chat.interface' import { cn } from '../lib/utils' import { Button } from '../ui/button' import { v4 as uuidv4 } from 'uuid' interface StarterQuestionsProps { questions: string[] sendMessage: ChatContext['sendMessage'] className?: string } export function StarterQuestions(props: StarterQuestionsProps) { return (