<Row md={3}>
{
shoes.map((a,i)=>{
return(
<Card shoes={shoes[i]} i={i+1}></Card>
)
})
}
</Row>
function Card(props){
return(
<>
<Col>
<img src={'https://codingapple1.github.io/shop/shoes'+ props.i + '.jpg'} width="80%"></img>
<h4>{props.shoes.title}</h4>
<p>{props.shoes.price}</p>
</Col>
</>
)
}
<Col>
을 같이 묶어서 컴포넌트로 만들었다.<img src={'https://codingapple1.github.io/shop/shoes'+ props.i + '.jpg'} width="80%"></img>
<Card shoes={shoes[0]} i={1}></Card>
<Card shoes={shoes[1]} i={2}></Card>
<Card shoes={shoes[2]} i={3}></Card>
어떠한 방법이든 프로그램을 완성만 하면 된다고 생각했는데 코드를 단축시키고 간단하게 하는 것이 얼마나 중요한 일인지 알게되는 시간이었다.