Policy document upload
Use accept, size, and count limits so the UI explains what the backend will accept.
Upload policy files
PDF only, up to 5 MB each.
Browse files
<Dropzone accept={{ 'application/pdf': ['.pdf'] }} maxFiles={3} maxSize={5_000_000} />Custom state renderer
Use the render function when accepted and rejected files need a product-specific review panel.
Drop identity evidence
PNG or JPG files. Rejections stay visible.
0 accepted0 rejected
<Dropzone>{({ acceptedFiles, fileRejections }) => <CustomUploadReview />}</Dropzone>