Files
bigcapital/client/src/containers/Vendors/VendorAttahmentTab.js
2020-11-18 15:12:22 +02:00

21 lines
361 B
JavaScript

import React from 'react';
import Dragzone from 'components/Dragzone';
/**
* Vendor Attahment Tab.
*/
function VendorAttahmentTab() {
return (
<div>
<Dragzone
initialFiles={[]}
onDrop={null}
onDeleteFile={[]}
hint={'Attachments: Maxiumum size: 20MB'}
/>
</div>
);
}
export default VendorAttahmentTab;