Study/Node&React_basic
[노드/리액트 기초] #28. React vs React Hooks
이지이즤
2022. 2. 7. 15:06
728x90
**본 포스팅은 유튜브&인프런 John Ahn님의 노드 리액트 기초 강의를 참고하여 작성하였습니다.**
Class vs Functional Component
Class에서 Functional보다 더 많은 기능들을 사용할 수 있다.
React Hook
하지만 React Hook 덕분에
이제 functional component에서도 위의 기능들을 사용할 수 있다.
constructor -> const
state -> useState
componentDidMount -> useEffect
728x90