Functional State Management
Ability to hook state and React life cycle
React Hooks
React Hook Notion
Don't Sync State. Derive It
Don't Sync State. Derive It!
In my Learn React Hooks workshop material, we have an exercise where we build a tic-tac-toe game using React's useState hook (based on the official React tutorial). Here's the Github file for the finished version of that exercise We have a few variables of state. There's a squares state variable via React.useState.
https://kentcdodds.com/blog/dont-sync-state-derive-it
React Hooks, the rebirth of State Management and beyond.
In late 2018 React Hooks were announced, and within minutes, I knew they would change everything.
https://tannerlinsley.com/blog/react-hooks-the-rebirth-of-state-management

Hooks API Reference - React
Hook 는 React 16.8에서 새로 추가된 개념입니다. Hook을 통해 class를 작성하지 않고도 state와 같은 React 기능들을 사용할 수 있습니다. 이 페이지는 React에 내장된 Hook API를 설명합니다. Hook이 생소하다면 Hook 개요를 먼저 읽어 보기 바랍니다. 혹은 frequently asked questions 에서 유용한 정보를 찾을 수도 있습니다. 상태 유지 값과 그 값을 갱신하는 함수를 반환합니다.
https://ko.reactjs.org/docs/hooks-reference.html

React의 새로운 패러다임, React Hooks
React Hooks는 지난 ReactConf 2018에서 발표된, class없이 state를 사용할 수 있는 새로운 기능입니다. 현재 v16.7.0-alpha 버전이라 아직 서비스에 적용할 수는 없지만, 요즘 커뮤니티에서 완전 핫해서; 미리 살펴보려고 합니다. Hooks가 왜 필요한가? 문제의 시작 리액트를 처음 접했을 때는 UI을 재사용 ...
https://velog.io/@vies00/React-Hooks


Seonglae Cho