card 컴포넌트 만들기에서
<Container>
<Row>
{
shoes.map(function(a, i){
return (
<Col>
<div>
< img src={"https://codingapple1.github.io/shop/shoes"+ (i+1) +".jpg"} width="80%" alt=''/>
<h4>{shoes[i].title}</h4>
<p>{shoes[i].content}</p>
<p>{shoes[i].price}</p>
</div>
</Col>
)
})
}
</Row>
</Container>
이렇게 해도 되던데 이거 괜찮은 코드인가요?