From a71b45d5949a9fc46c25c6020810b431792e4fe9 Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Sun, 1 Dec 2024 11:19:11 -0500 Subject: [PATCH] added example buttons --- app/components/chat/ExamplePrompts.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/app/components/chat/ExamplePrompts.tsx b/app/components/chat/ExamplePrompts.tsx index 2274b0e..8378c7b 100644 --- a/app/components/chat/ExamplePrompts.tsx +++ b/app/components/chat/ExamplePrompts.tsx @@ -10,8 +10,16 @@ const EXAMPLE_PROMPTS = [ export function ExamplePrompts(sendMessage?: { (event: React.UIEvent, messageInput?: string): void | undefined }) { return ( -
-
+
+
{EXAMPLE_PROMPTS.map((examplePrompt, index: number) => { return ( ); })}