16 lines
589 B
TypeScript
16 lines
589 B
TypeScript
import React, { FC, memo } from '../../../lib/teact/teact';
|
|
import { OwnProps } from './AttachmentModal';
|
|
import { Bundles } from '../../../util/moduleLoader';
|
|
|
|
import useModuleLoader from '../../../hooks/useModuleLoader';
|
|
|
|
const AttachmentModalAsync: FC<OwnProps> = (props) => {
|
|
const { attachments } = props;
|
|
const AttachmentModal = useModuleLoader(Bundles.Extra, 'AttachmentModal', !attachments.length);
|
|
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
return AttachmentModal ? <AttachmentModal {...props} /> : undefined;
|
|
};
|
|
|
|
export default memo(AttachmentModalAsync);
|