01. react_반복문장 component로 제작
1. DATA let data = [ { id: 0, title: "White and Black", content: "Born in France", price: 120000, }, { id: 1, title: "Red Knit", content: "Born in Seoul", price: 110000, }, { id: 2, title: "Grey Yordan", content: "Born in the States", price: 130000, }, ]; export default data; 2. 반복되는 구문 { shoes[0].title } { shoes[0].price } 상품명 상품정보 상품명 상품정보 Map( ) 함수 사용 {shoes.map((a, i) => { return ; })} impor..
2022. 12. 22.