Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
24 lines
568 B
TypeScript
24 lines
568 B
TypeScript
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$<any>}
|
|
*/
|
|
function InviteContactsSection() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<span>{t('addPeople.addContacts')}</span>
|
|
<InviteContactsForm />
|
|
<div className = 'invite-more-dialog separator' />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default InviteContactsSection;
|