import React from 'react'; // import classNames from 'classnames'; import { ContactName } from './ContactName'; import { Intl } from '../Intl'; import { Localizer } from '../../types/Util'; interface Contact { phoneNumber: string; profileName?: string; name?: string; } interface Props { isGroup: boolean; contact: Contact; i18n: Localizer; onVerify: () => void; } export class SafetyNumberNotification extends React.Component { public render() { const { contact, isGroup, i18n, onVerify } = this.props; return (
, ]} i18n={i18n} />
{i18n('verifyNewNumber')}
); } }