import { cache } from "react" import { serverClient } from "../../trpc" export const getBookingConfirmation = cache( async function getMemoizedBookingConfirmation(refId: string) { const caller = await serverClient() return caller.booking.get({ refId }) } )