interface PromptSuggestionsProps { label: string; append: (message: { role: "user"; content: string }) => void; suggestions: string[]; } export function PromptSuggestions({ label, append, suggestions, }: PromptSuggestionsProps) { return (

{label}

{suggestions.map(suggestion => ( ))}
); }