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