import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { UncontrolledTooltip } from 'reactstrap'; import { serviceURL, gettext } from '../utils/constants'; import '../css/published-wiki-entrance.css'; const propTypes = { wikiID: PropTypes.string.isRequired, customURLPart: PropTypes.string.isRequired }; class PublishedWikiExtrance extends Component { constructor(props) { super(props); } render() { const { wikiID, customURLPart } = this.props; return ( <> {e.stopPropagation();}} > {gettext('Published')} {gettext('View published page')} ); } } PublishedWikiExtrance.propTypes = propTypes; export default PublishedWikiExtrance;