import {Component} from 'react'; import DocumentTitle from 'react-document-title'; import NoProjectMessage from 'app/components/noProjectMessage'; import GlobalSelectionHeader from 'app/components/organizations/globalSelectionHeader'; import {Organization} from 'app/types'; import withOrganization from 'app/utils/withOrganization'; type Props = { organization: Organization; }; class IssueListContainer extends Component { getTitle() { return `Issues - ${this.props.organization.slug} - Sentry`; } render() { const {organization, children} = this.props; return ( {children} ); } } export default withOrganization(IssueListContainer); export {IssueListContainer};