import Head from "next/head"; import prisma from "../../lib/prisma"; import { getSession, useSession } from "next-auth/client"; import Shell from "../../components/Shell"; export default function Bookings({ bookings }) { const [, loading] = useSession(); if (loading) { return
Loading...
; } return (Person | Event | {/*Date | */}Actions |
---|---|---|---|
{booking.attendees[0].name}
{booking.attendees[0].email}
|
{booking.title}
{booking.description}
|
{/*
{dayjs(booking.startTime).format("D MMMM YYYY HH:mm")}
| */}
Reschedule Cancel |