// @flow import React from 'react'; import CopyButton from '../../../../base/buttons/CopyButton'; import { translate } from '../../../../base/i18n'; import { getDecodedURI } from '../../../../base/util'; type Props = { /** * Invoked to obtain translated strings. */ t: Function, /** * The URL of the conference. */ url: string }; /** * Component meant to enable users to copy the conference URL. * * @returns {React$Element} */ function CopyMeetingLinkSection({ t, url }: Props) { return ( <> {t('addPeople.shareLink')} ); } export default translate(CopyMeetingLinkSection);