import { FileUpload } from 'welcome-ui/FileUpload'
const Example = () => {
const handleChange = () => {
}
return (
<FileUpload
accept="*/*"
handleAddFile={handleChange}
handleRemoveFile={handleChange}
name="file"
value=""
/>
)
}
export default Example