import Link from 'next/link' import React from 'react' export default function EventInfoQuickView(props: EventProps) { return (
Date: {props.date ? props.date.toDateString() : 'null'}
Location: {props.location ? props.location.name : 'null'}
Created By: {props.creator.username}