UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

19 lines (15 loc) 282 B
/** * * WysiwygDropUpload * */ import React from 'react'; import Label from './Label'; const WysiwygDropUpload = props => { return ( <Label {...props}> <input onChange={() => {}} type="file" tabIndex="-1" /> </Label> ); }; export default WysiwygDropUpload;