import React, { Component } from 'react' import PropTypes from 'prop-types' import classnames from 'classnames' export default class PageContainerHeader extends Component { static propTypes = { title: PropTypes.string, subtitle: PropTypes.string, onClose: PropTypes.func, showBackButton: PropTypes.bool, onBackButtonClick: PropTypes.func, backButtonStyles: PropTypes.object, backButtonString: PropTypes.string, tabs: PropTypes.node, } renderTabs () { const { tabs } = this.props return tabs && (