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