'방방곡곡' 프로젝트 ~ing
{stayData.slice(0, 5).map((item) => {
return (
<SpotEachItemWrapper>
<SpotEachItemImgWrapper
src={item?.firstimage}
alt="주변맛집 이미지"
/>
<Link
style={{ textDecoration: "none" }}
to={`/${item.contentid}`}
>
{item?.title}
</Link>
</SpotEachItemWrapper>
);
})}