chat-suggestions-demo
simple-ai/chat-suggestions-demoFreeExample
simple-ai publishes no description for this item.
Install it
npx shadcn@latest add https://simple-ai.dev/r/chat-suggestions-demo.jsonSource
1"use client";23import { useState } from "react";4import {5 ChatSuggestion,6 ChatSuggestions,7 ChatSuggestionsContent,8 ChatSuggestionsDescription,9 ChatSuggestionsHeader,10 ChatSuggestionsTitle,11} from "@/registry/ui/chat-suggestions";1213export default function ChatSuggestionsDemo() {14 const [selectedSuggestion, setSelectedSuggestion] = useState<string>("");1516 const suggestions = [17 "Tell me about your features",18 "How do I get started?",19 "Show me an example",20 "What are the pricing options?",21 ];2223 return (24 <div className="flex flex-col gap-4 p-4">25 <ChatSuggestions>26 <ChatSuggestionsHeader>27 <ChatSuggestionsTitle>28 Try these prompts:29 </ChatSuggestionsTitle>30 <ChatSuggestionsDescription>31 Click a suggestion to get started32 </ChatSuggestionsDescription>33 </ChatSuggestionsHeader>34 <ChatSuggestionsContent>35 {suggestions.map((suggestion) => (36 <ChatSuggestion37 key={suggestion}38 onClick={() => setSelectedSuggestion(suggestion)}39 >40 {suggestion}41 </ChatSuggestion>42 ))}43 </ChatSuggestionsContent>44 </ChatSuggestions>4546 {selectedSuggestion && (47 <div className="p-3 bg-muted rounded-md text-sm">48 <span className="font-medium">Selected:</span>{" "}49 {selectedSuggestion}50 </div>51 )}52 </div>53 );54}
Files it writes
More from simple-ai
All 77 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| chat-input-demo-mentionschat-input-demo-mentions | simple-ai | Examples | Free | no deps | |
| chat-input-demo-simplechat-input-demo-simple | simple-ai | Examples | Free | no deps | |
| chat-input-with-addonschat-input-with-addons | simple-ai | Examples | Free | no deps | |
| chat-message-area-demochat-message-area-demo | simple-ai | Examples | Free | no deps | |
| chat-message-area-demo-alignmentchat-message-area-demo-alignment | simple-ai | Examples | Free | no deps | |
| chat-message-area-demo-streamingchat-message-area-demo-streaming | simple-ai | Examples | Free | no deps | |
| chat-message-demochat-message-demo | simple-ai | Examples | Free | no deps | |
| chat-message-demo-avatar-imagechat-message-demo-avatar-image | simple-ai | Examples | Free | no deps |
