import { UseChatHelpers } from 'ai/react' import { Button } from '@/components/ui/button' import { IconArrowRight } from '@/components/ui/icons' const exampleMessages = [ { heading: 'Convert list of string to numbers', message: `How to convert a list of string to numbers in python`, }, { heading: 'How to parse email address', message: 'How to parse email address with regex' } ] export function EmptyScreen({ setInput }: Pick) { return (

Welcome to Playground!

You can start a conversation here or try the following examples:

{exampleMessages.map((message, index) => ( ))}
) }