17 lines
590 B
TypeScript
17 lines
590 B
TypeScript
import type { FC } from '../../../lib/teact/teact';
|
|
import React from '../../../lib/teact/teact';
|
|
import { Bundles } from '../../../util/moduleLoader';
|
|
import type { OwnProps } from './UrlAuthModal';
|
|
|
|
import useModuleLoader from '../../../hooks/useModuleLoader';
|
|
|
|
const UrlAuthModalAsync: FC<OwnProps> = (props) => {
|
|
const { urlAuth } = props;
|
|
const UrlAuthModal = useModuleLoader(Bundles.Extra, 'UrlAuthModal', !urlAuth);
|
|
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
return UrlAuthModal ? <UrlAuthModal {...props} /> : undefined;
|
|
};
|
|
|
|
export default UrlAuthModalAsync;
|