할머니의 콤퓨타 도전기
Class Components and State 본문
class component
- function component와 달리 state 표현 가능
- function component는 함수로써 무엇인가를 바로 return해서 screen에 표현하지만, class는 React Component를 extends 하고 render method로 return을 적어서 표현
state
- 컴포넌트 내부에서 자체적으로 읽고, 업데이트할 수 있는 값을 사용하기 위해 state가 존재
- 모든 리액트 컴포넌트 내에 존재할 수 있는 Object
- dynamic data
- 변화를 주고 싶은 data를 state로 주로 정함
- onClick: React에 있는 prop 기능
'Web Front-end > React.js' 카테고리의 다른 글
Component Life Cycle (0) | 2021.04.08 |
---|---|
All you need to know about State (0) | 2021.04.08 |
npm? npx? 🤔 (0) | 2021.04.07 |
Protection with PropTypes (0) | 2021.04.01 |
map Recap (0) | 2021.04.01 |
Comments