You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InviteContactsSection.tsx 568B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import { useTranslation } from 'react-i18next';
  3. import InviteContactsForm from './InviteContactsForm';
  4. /**
  5. * Component that represents the invitation section of the {@code AddPeopleDialog}.
  6. *
  7. * @returns {ReactElement$<any>}
  8. */
  9. function InviteContactsSection() {
  10. const { t } = useTranslation();
  11. return (
  12. <>
  13. <span>{t('addPeople.addContacts')}</span>
  14. <InviteContactsForm />
  15. <div className = 'invite-more-dialog separator' />
  16. </>
  17. );
  18. }
  19. export default InviteContactsSection;