TelegramPWA/src/components/payment/PaymentModal.async.tsx

19 lines
578 B
TypeScript

import type { FC } from '../../lib/teact/teact';
import React from '../../lib/teact/teact';
import type { OwnProps } from './PaymentModal';
import { Bundles } from '../../util/moduleLoader';
import useModuleLoader from '../../hooks/useModuleLoader';
const PaymentModalAsync: FC<OwnProps> = (props) => {
const { isOpen } = props;
const PaymentModal = useModuleLoader(Bundles.Extra, 'PaymentModal', !isOpen);
// eslint-disable-next-line react/jsx-props-no-spreading
return PaymentModal ? <PaymentModal {...props} /> : undefined;
};
export default PaymentModalAsync;