[React] event, render 함수, state 값 변경 방법
이벤트(event)란? 저번 글에서 배웠던 state와 props를 동적으로 움직이게 하는 거임 이해를 위해 예시로 배워보겠다 App.js class App extends Component { constructor(props) { super(props); this.state = { mode:'welcome', subject:{title:'WEB', sub:'World Wide Web!'}, welcome:{title:'Welcome', desc:'Hello, React!!'}, contents:[ {id:1, title:'HTML', desc:'HTML is for information'}, {id:2, title:'CSS', desc:'CSS is for design'}, {id:3, title:'Ja..
2022. 1. 3.