import { useUI } from '~/context/ui' import { useLocalize } from '../../../context/localize' import { Modal } from '../../Nav/Modal' import { ShareLinks } from '../ShareLinks' type Props = { modalTitle?: string shareUrl?: string title: string imageUrl: string description: string } export const ShareModal = (props: Props) => { const { t } = useLocalize() const { hideModal } = useUI() return (

{t('Share publication')}

hideModal()} />
) }