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