Files
Eventment/app/components/AppHeader/HeaderContentRight.js
Mike Fitzpatrick f0460a1b76 - more
2019-08-12 17:44:01 -04:00

17 lines
445 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import UserProfileButton from './UserProfileButton/UserProfileButton.container.js';
export default function HeaderContentRight({ hideUserProfileButton, navigation }) {
if (hideUserProfileButton) {
return null;
}
return <UserProfileButton navigation={navigation} />;
}
HeaderContentRight.propTypes = {
hideUserProfileButton: PropTypes.bool.isRequired,
};