import React, { PropTypes } from 'react'; function ShareModal(props) { const { projectId, ownerUsername } = props; const hostname = window.location.origin; return (
`} />
); } ShareModal.propTypes = { projectId: PropTypes.string.isRequired, ownerUsername: PropTypes.string.isRequired }; export default ShareModal;