React에서 .map()을 사용하는 경우의 빈 배열 처리 리액트가 있어요맵하는 JS 컴포넌트notes표시할 변수입니다. 그러나 메모가 없고 에러가 나는 문제에 부딪혔다.어떻게 접근하면 좋을까요? 코드는 다음과 같습니다. import React, {Component} from 'react'; class List extends Component { constructor(props){ super(props); } render(){ var notes = this.props.items.map((item, i)=>{ return( {item.title} {item.content} ) }); return( {notes} ); } } export default List; 하나 이상의 노트가 있을 때 노트를 렌더링하고..