import React, { memo } from '../../lib/teact/teact'; import { getActions } from '../../global'; import type { FC } from '../../lib/teact/teact'; import type { ApiUser } from '../../api/types'; import useLang from '../../hooks/useLang'; import ConfirmDialog from '../ui/ConfirmDialog'; export type OwnProps = { bot?: ApiUser; }; const AttachBotInstallModal: FC = ({ bot, }) => { const { cancelAttachBotInstall, confirmAttachBotInstall } = getActions(); const lang = useLang(); const name = bot?.firstName; return ( ); }; export default memo(AttachBotInstallModal);