GodUIGodUI
109Follow on X

What can I help with?

Pick a starter or type your own.

Prompt Suggestions

tsx
import { PromptSuggestions } from "@/components/godui/prompt-suggestions";const suggestions = [{ id: "1", label: "Summarize this thread", hint: "Condense into 3 bullets" },{ id: "2", label: "Draft a reply", hint: "Friendly and concise" },{ id: "3", label: "Find action items", hint: "Extract todos and owners" },];export function PromptSuggestionsDemo() {return (  <PromptSuggestions    suggestions={suggestions}    onSelect={(s) => console.log(s.label)}  />);}