import Link from 'next/link'; import Card from '@material-ui/core/Card'; import CardActions from '@material-ui/core/CardActions'; import CardContent from '@material-ui/core/CardContent'; import Typography from '@material-ui/core/Typography'; import Button from '@material-ui/core/Button'; import {useTranslation} from 'react-i18next'; const EventCard = ({event}) => { const {t} = useTranslation(); return ( {event.name} {t('event.fields.date')} {event.date || t('event.fields.empty')} {t('event.fields.address')} {event.address || t('event.fields.empty')} ); }; export default EventCard;