1. 구조분해 할당으로 state, props 간편하게 사용하기
onSubmitForm = e => {
const {result, value, tries,answer} = this.state;
...
}
render(){
const {result, value, tries} = this.state;
...
}
NumberBaseball.js
const {index, value} = this.props;
Try.js
2. class 밖으로 뺄 수 있는 함수
this를 사용하지 않으면 class 밖으로 뺄 수 있다. (getNumbers 처럼)
'코딩이야기 > 인터넷 강의' 카테고리의 다른 글
section2. 3-9. React Devtools & 3-10. shouldComponentUpdate (0) | 2024.05.22 |
---|---|
section2. 3-8. 숫자야구 Hooks로 전환하기(+useState lazy init) (0) | 2024.05.22 |
section2. 3-6 숫자야구 만들기 (0) | 2024.05.21 |
section2. 3-5. 주석과 메서드 바인딩 (0) | 2024.05.20 |
section2. 3-4. 컴포넌트 분리와 props (0) | 2024.05.20 |