import React from 'react' import Link from 'next/link' export default class FluxItem extends React.Component { render() { const location = this.props.locations.find((el) => el.id === this.props.item.coinId) return (

By {this.props.item.pseudo} At {location.name}

) } }