강의

멘토링

로드맵

Inflearn Community Q&A

gywls33945120's profile image
gywls33945120

asked

Learning React while making web games

2-1. Using React Hooks

this

Written on

·

240

0

안녕하세요 궁금한게 있는데요

class에서는 state를 변경할 때 this.state.value 이런식으로 this.state 를 써주었는데 Hooks에서는 this.state를 사용하지 않고 써주는 것도 class와 Hooks의 차이점 인가요?

react

Answer 1

1

zerocho님의 프로필 이미지
zerocho
Instructor

hooks에서는 useState를 씁니다. 차이점입니다. class에서도 state를 변경할 때는 this.setState를 씁니다.

gywls33945120's profile image
gywls33945120

asked

Ask a question