mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
21 lines
361 B
JavaScript
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;
|