강의

멘토링

로드맵

Inflearn Community Q&A

crystalsujeongna2455's profile image
crystalsujeongna2455

asked

Learning React while making web games

3-11. Preventing unfair child re-rendering (PureComponent and memo)

hooks component에서는 shouldComponentUpdate( ) 같은건 없나요??

Written on

·

204

0

hooks에서 memo를 쓰는 경우 말고

따로 업데이트 커스터 마이징 하는경우에는 

어떻게 하나요?

react

Quiz

ES 모듈 시스템의 `import`와 Node.js의 `require` 간의 주요 차이점은 무엇일까요?

`import`는 비동기, `require`는 동기 방식입니다.

`import`는 정적, `require`는 동적 로딩 방식입니다.

`import`는 파일 경로만, `require`는 패키지 이름만 사용합니다.

`import`는 Node.js에서만, `require`는 브라우저에서만 사용됩니다.

Answer 1

1

zerocho님의 프로필 이미지
zerocho
Instructor

useMemo같은 훅으로 통제합니다.

crystalsujeongna2455's profile image
crystalsujeongna2455

asked

Ask a question