Hi,
I was messing around with the Media Upload button.
It’s deprecated. Instead, we have to use MediaUpload.
In the example files, instead of MediaUploadButton we have to use MediaUplaod like this:
<MediaUpload
onSelect={ onSelectImage }
type="image"
value={ props.attributes.imgID }
render={ ( { open } ) => (
<Button
className="components-button button button-medium"
onClick={ open }>
Upload Image
</Button>
) }
/>
Hope this helps.