// @flow import React from 'react'; import { translate } from '../../../../base/i18n'; import InviteContactsForm from './InviteContactsForm'; type Props = { /** * Invoked to obtain translated strings. */ t: Function }; /** * Component that represents the invitation section of the {@code AddPeopleDialog}. * * @returns {ReactElement$} */ function InviteContactsSection({ t }: Props) { return ( <> {t('addPeople.addContacts')}
); } export default translate(InviteContactsSection);