import * as Sentry from '@sentry/react'; import {openModal} from 'sentry/actionCreators/modal'; import {Button} from 'sentry/components/button'; import TextCopyInput from 'sentry/components/textCopyInput'; import {IconUpload} from 'sentry/icons'; import {t} from 'sentry/locale'; function ShareModal({Header, Body}) { const url = new URL(window.location.href); return (

{t('Share View')}

{url.toString()}
); } function ShareButton() { return ( ); } export default ShareButton;