17 lines
490 B
TypeScript
17 lines
490 B
TypeScript
import type { FC } from '../../../lib/teact/teact';
|
|
|
|
import type { OwnProps } from './GiftCodeModal';
|
|
|
|
import { Bundles } from '../../../util/moduleLoader';
|
|
|
|
import useModuleLoader from '../../../hooks/useModuleLoader';
|
|
|
|
const GiftCodeModalAsync: FC<OwnProps> = (props) => {
|
|
const { modal } = props;
|
|
const GiftCodeModal = useModuleLoader(Bundles.Extra, 'GiftCodeModal', !modal);
|
|
|
|
return GiftCodeModal ? <GiftCodeModal {...props} /> : undefined;
|
|
};
|
|
|
|
export default GiftCodeModalAsync;
|