A chat message input with an attached image dropzone that previews selected files as thumbnails inline.
import FileUploadDropzone from "@/components/ui/chat-form-dropzone"; export default function Default() { return ( <div className="flex min-h-[420px] w-full items-center justify-center bg-background text-foreground"> <FileUploadDropzone /> </div> ); }