// @flow import React from "react"; type Props = { address?: string }; class MailLink extends React.Component { render() { const { address } = this.props; if (!address) { return null; } return {address}; } } export default MailLink;