- 追加された行はこの色です。
- 削除された行はこの色です。
- JavaScript/React/useReducerを使ってuseStateを独自に実装 へ行く。
- JavaScript/React/useReducerを使ってuseStateを独自に実装 の差分を削除
#author("2021-03-19T03:18:22+09:00","default:ryuichi","ryuichi") * useReducerを使ってuseStateを独自に実装 [#qd1d325a] function useState(initialValue) { let [state, dispatch] = useReducer((state, action) => { return action }, initialValue) return [state, dispatch] }