TelegramPWA/src/components/right/CreateTopic.async.tsx

20 lines
574 B
TypeScript

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