예시 상품 데이터를 준비해보자.하단 자료를 state에 보관하고 html에 데이터바인딩해보도록 하자.(실제 서비스였으면 서버에서 받았겠지만 서버가 없으니 서버에서 보낸 것이라고 생각)[ { 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 def..