#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]
 }

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS