Open
Description
Hi, I have a need to programmatically populate many DropZone
s (like 10+) for my CMS integration. But I dont want the user to populate all of the DropZone
manually.
I am thinking of some way to provide a default component like
<DropZone name="banner" defaultComponent={'ImageBanner'} />
// or
<DropZone name="banner" defaultComponent={() => <h2>Heading</h2>} />
Wondering if this is possible do this with as plugin, or even extend the current DropZone
component.
Maybe it is a feature request, love to open a PR with some guidance as well.
Thank you