import StayCard from "../StayCard" import styles from "./stayList.module.css" import { StayListProps } from "@/types/components/myPages/stays/stayList" export default function StayList({ lang, stays }: StayListProps) { return (
{stays.map((stay) => ( ))}
) }