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'; import {EventEntity} from '../../generated/graphql'; interface Props { event: EventEntity; } const EventCard = ({event}: Props) => { const {t} = useTranslation(); return ( {event.attributes.name} {t('event.fields.date')} {event.attributes.date || t('event.fields.empty')} {t('event.fields.address')} {event.attributes.address || t('event.fields.empty')} ); }; export default EventCard;