상수데이터 export const RECOMMEND_DATA = [ { id: 1, userId: 'jihyun219', userName: 'jihyun', src: '/images/jihyunLee/profile.jpg', }, { id: 2, userId: 'jihyun123', userName: 'jihyun', src: '/images/jihyunLee/profile.jpg', }, { id: 3, userId: 'jiyoung999', userName: 'jihyun', src: '/images/jihyunLee/profile.jpg', }, ]; 상수데이터에서 [ ] 배열로 선언한 이유는 무엇일까? 바로 map 메서드를 사용하기 위해서이다. {RECOMMEND_DATA.map(story => ..