import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import AccountListItem from '../../account-list-item'; import NetworkDisplay from '../../network-display'; export default class SignatureRequestHeader extends PureComponent { static propTypes = { fromAccount: PropTypes.object, }; render() { const { fromAccount } = this.props; return (
{fromAccount && }
); } }