Components
A drag-and-drop file upload area for CSV, XLSX and XLS files with type validation, an upload progress bar and cancel action.
Loading preview...
"use client";
import FileUpload04 from "@/components/ui/file-upload-04";
export default function DemoFileUpload04() {
return (
<div className="flex min-h-svh w-full items-center justify-center bg-background p-6">
<FileUpload04 />
</div>
);
}