lbry-desktop/ui/modal/modalSocialShare/view.jsx
2021-06-10 17:47:02 -04:00

29 lines
708 B
JavaScript

// @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<Props> {
render() {
const { closeModal, uri, webShareable, collectionId } = this.props;
return (
<Modal isOpen onAborted={closeModal} type="card">
<Card
title={__('Share')}
actions={<SocialShare uri={uri} webShareable={webShareable} collectionId={collectionId} />}
/>
</Modal>
);
}
}
export default ModalSocialShare;