안녕하세요... 이미지 업로드가 안돼요ㅜㅜ
app.js부분
<div>
{/* <Product shoes={shoes[0]}></Product> */}
{
shoes.map((a,i) => {
// return <Product img={shoes[i].image} title={shoes[i].title} price={shoes[i].price}/>
return <Product shoes={shoes[i]} i ={i}></Product>
})
}
</div>
컴포넌트 :
function Product(props){
return(
<div className='col-md-4'>
</img>
<h5>{props.shoes.title}</h5>
<p>{props.shoes.price}</p>
</div>
)
}