Better Upload
Simple and easy file uploads for React. Upload directly to any S3-compatible service with minimal setup.
export function Uploader() {
const { control } = useUploadFiles({
route: 'images',
});
return (
<UploadDropzone
control={control}
accept="image/*"
description={{
maxFiles: 4,
maxFileSize: '2MB',
fileTypes: 'JPEG, PNG, GIF',
}}
/>
);
}Easy to use
It takes only a few minutes to get started and upload files directly to your S3 bucket.
Beautiful
Use copy-and-paste shadcn/ui components to rapidly build your UI.
Own your data
Upload directly to your S3 bucket, so you have full control over files.