import Stay from "./Stay" import Title from "@/components/MyPages/Title" import styles from "./upcoming.module.css" import type { LangParams } from "@/types/params" import type { StaysProps } from "@/types/components/myPages/stays" import Link from "next/link" export default function UpcomingStays({ lang, stays, }: StaysProps & LangParams) { return (
Your upcoming stays See all
{stays.map((stay) => ( ))}
) }