import Link from 'next/link' import React from 'react' import { Card, CardContent, CardFooter, CardHeader, CardTitle } from './ui/card' export default function EventInfoQuickView(props: QucikEventProps) { return ( {props.name}

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

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

Created By: {props.creator.username}

) }