import React from 'react' import { Link } from "react-router-dom"; import './eventInfoShort.scss'; export class EventInfoShort extends React.Component { render() { const { title, country, city, eventDate, imgSrc, id } = this.props; const dateArr = new Date(eventDate).toDateString().split(' '); return (

{title}

{country}, {city}
{ dateArr.map( (el, ind) => ind > 0 ? {el} : null ) }
{title}
) } } export default EventInfoShort;