// @flow import React from 'react'; import { Modal } from 'modal/modal'; import SocialShare from 'component/socialShare'; import Card from 'component/common/card'; type Props = { closeModal: () => void, uri: string, webShareable: boolean, collectionId?: number, }; class ModalSocialShare extends React.PureComponent { render() { const { closeModal, uri, webShareable, collectionId } = this.props; return ( } /> ); } } export default ModalSocialShare;