import { UseChatHelpers } from 'ai/react' import { Button } from '@/components/ui/button' import { IconArrowRight } from '@/components/ui/icons' const exampleMessages = [ { heading: 'Explain technical concepts', message: `What is a "serverless function"?` }, { heading: 'Explain how to parse email address', message: 'How to parse email address with regex' } ] export function EmptyScreen({ setInput }: Pick) { return (

Welcome to Tabby Playground!

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

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