Spaces:
Running
Running
File size: 372 Bytes
52b4c36 3ba9c0c 52b4c36 3ba9c0c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { UseChatHelpers } from 'ai/react';
export function EmptyScreen({ setInput }: Pick<UseChatHelpers, 'setInput'>) {
return (
<div className="mx-auto max-w-2xl px-4">
<div className="rounded-lg border bg-background p-8">
<h1 className="mb-2 text-lg font-semibold">Welcome to Vision Agent</h1>
<p>Start by uploading an image</p>
</div>
</div>
);
}
|