인프런 커뮤니티 질문&답변
useeffect
작성
·
221
답변 2
0
0
John Ahn
지식공유자
useEffect(() => {
if (props.detail.images && props.detail.images.length > 0) {
let images = []
props.detail.images.map(item => {
images.push({
original: `http://localhost:5000/${item}`,
thumbnail: `http://localhost:5000/${item}`
})
})
setImages(images)
}
}, [props.detail])
이 부분을 말씀하시는 건가요 ?





