Replies: 1 comment 1 reply
-
<FileUpload.ItemGroup>
<FileUpload.Context>
{({ acceptedFiles }) =>
[...acceptedFiles, ..otherFiles].map((file) => (
<FileUpload.Item key={file.name} file={file} />
))
}
</FileUpload.Context>
</FileUpload.ItemGroup> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello team!
Thanks for all the great work on Ark UI, really enjoy it!
I've a question about FileUpload - in version 1.3 it was possible to set files via
files
prop,however it's no longer possible in version 3.x (didn't check 2.x)
What is the recommended solution for this case? Couldn't find respective documentation.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions