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