[React] 상품목록 Component 로 만들어 반복문 돌리기
💡 실습 포인트! 💜 상품목록 Component 로 만들어 데이터바인딩하기 // data.js 파일의 상품 데이터 export default [ { 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 } ]; import Data from './data.js'; function App() { let [shoes, setShoes] = use..
2022. 3. 23.