import React from 'react' import PropTypes from 'prop-types' import BackButton from './back_button' import Heading from './heading' export default class ProfileNavigationBar extends React.PureComponent { static propTypes = { titleHTML: PropTypes.string, showBackBtn: PropTypes.bool, } render() { const { titleHTML } = this.props return (
) } }