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