Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. renderLinks() {
  2.     const links = [];
  3.     if (this.state.footerProperty.ContactEmail){
  4.         links.push(<a href={this.state.footerProperty.ContactEmail}>{this.state.footerProperty.ContactEmail}</a>);
  5.     }
  6.     return links;
  7. }
  8.  
  9. render() {
  10.     return (
  11.         <FooterColumn>
  12.             {this.renderLinks()}
  13.         </FooterColumn>
  14.     );
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement