import {Fragment} from 'react'; import Confirm from 'sentry/components/confirm'; import {t} from 'sentry/locale'; import ConfirmHeader from 'sentry/views/settings/account/accountSecurity/components/confirmHeader'; import TextBlock from 'sentry/views/settings/components/text/textBlock'; type Props = React.ComponentProps; const message = ( {t('Do you want to remove this method?')} {t( 'Removing the last authentication method will disable two-factor authentication completely.' )} ); function RemoveConfirm(props: Props) { return ; } export default RemoveConfirm;