[React] Warning: Each child in a list should have a unique "key" prop.
Warning: Each child in a list should have a unique "key" prop. 라는 오류가 발생했다. 각각의 prop들은 key를 가져야 한다는 오류이다. const Tab = [ { title: 'HOME', content: 'HOME' }, { title: 'WEB', content: 'WEB' }, { title: 'ABOUT', content: 'ABOUT' }, { title: 'BLOG', content: 'BLOG' } ] 원래 코드는 위와 같았다. const Tab = [ { id:1, title: 'HOME', content: 'HOME' }, { id:2, title: 'WEB', content: 'WEB' }, { id:3, title: 'ABOUT'..