[React] Warning: Each child in a list should have a unique "key" prop.
props 렌더링 app의 내부 state를 TOC에 주입함으로써 자동으로 목록이 바뀌게 하는 작업 TOC의 부모가 가진 state값을 이용해서 TOC의 내부 값을 바뀌게 해본다 class App extends Component { constructor (props){ super(props); this.state = { subject:{title:'WEB', sub:'World Wide Web!'}, contents:[ {id:1, title:'HTML', desc:"HTML is for information"}, {id:2, title:'CSS', desc:'CSS is for design'}, {id:3, title:'JavaScript', desc:'JavaScript is for interacti..