render()

in src/pages/community/contactItem.tsx [39:59]


  render() {
    const { contact } = this.props;
    const { img } = this.state;
    return (
      <BrowserOnly>
        {() => (
          <a
            className='contact-item'
            href={contact.link}
            rel='noopener noreferrer'
            target='_blank'
            onMouseOver={this.onMouseOver}
            onMouseOut={this.onMouseOut}
          >
            <img src={img} />
            <div>{contact.title}</div>
          </a>
        )}
      </BrowserOnly>
    );
  }