【React】useState、useReducer概略
useState
、useReducer
はReact Hooks APIuseState
はFC(Functional Component)にstateを注入可能useReducer
も同様にstateを注入しつつ、dispatch
を通じてアクションをチェック。- 結果stateに関わるロジックを共通化することができる
useState
、useReducer
はReact Hooks APIuseState
はFC(Functional Component)にstateを注入可能useReducer
も同様にstateを注入しつつ、dispatch
を通じてアクションをチェック。