import Link from 'next/link' import React from 'react' export default function EventInfoQuickView(props: EventProps) { return (

{props.name}

Date: {props.date ? props.date.toDateString() : 'null'}

Location: {props.location ? props.location.name : 'null'}

Created By: {props.creator.username}

) }