import { notFound } from "next/navigation" import { Suspense } from "react" import { MyStay } from "@/components/HotelReservation/MyStay" import { MyStaySkeleton } from "@/components/HotelReservation/MyStay/myStaySkeleton" import type { LangParams, PageArgs } from "@/types/params" export default async function MyStayPage({ searchParams, }: PageArgs) { if (!searchParams.RefId) { notFound() } return ( }> ) }