import React from 'react'; import { useTranslation } from 'react-i18next'; import InviteContactsForm from './InviteContactsForm'; /** * Component that represents the invitation section of the {@code AddPeopleDialog}. * * @returns {ReactElement$} */ function InviteContactsSection() { const { t } = useTranslation(); return ( <> {t('addPeople.addContacts')}
); } export default InviteContactsSection;