목록2024/12/11 (1)
heyday2024 님의 블로그
버전 관련 트러블 슈팅
문제상황:// NewProductList.tsx{/* @ts-expect-error Async Server Component */}const NewProductList = async () => { const res = await fetch("http://localhost:4001/products", { cache: "no-store", }); const data = await res.json(); const newData = data.filter((p) => p.isNew); return ( {newData.map((product) => ( {product.title} {product...
카테고리 없음
2024. 12. 11. 22:14