import React from 'react'; const EXAMPLE_PROMPTS = [ { text: 'Build a todo app in React using Tailwind' }, { text: 'Build a simple blog using Astro' }, { text: 'Create a cookie consent form using Material UI' }, { text: 'Make a space invaders game' }, { text: 'Make a Tic Tac Toe game in html, css and js only' }, ]; export function ExamplePrompts(sendMessage?: { (event: React.UIEvent, messageInput?: string): void | undefined }) { return (
{EXAMPLE_PROMPTS.map((examplePrompt, index: number) => { return ( ); })}
); }