mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 16:19:49 +00:00
24 lines
420 B
TypeScript
24 lines
420 B
TypeScript
import React, {
|
|
useMemo,
|
|
useState,
|
|
useEffect,
|
|
useRef,
|
|
useCallback,
|
|
} from 'react';
|
|
import { Dragzone, FormattedMessage as T } from '@/components';
|
|
|
|
function CustomerAttachmentTabs() {
|
|
return (
|
|
<div>
|
|
<Dragzone
|
|
initialFiles={[]}
|
|
onDrop={null}
|
|
onDeleteFile={[]}
|
|
hint={<T id={'attachments_maximum'} />}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default CustomerAttachmentTabs;
|