import React from 'react'; import PropTypes from 'prop-types'; /** * Org Name - to display organisation name of user contact */ export const OrgName: React.StatelessComponent = ({item}) => (
{item.first_name && item.organisation && } { item.first_name && item.organisation && {item.organisation} }
); OrgName.propTypes = { item: PropTypes.object, };