這篇是學習React 的useContext, useReducer 的一種實作方式,將相關程式碼放在一起方便閱讀,只是一個使用的範例提供紀錄與理解,實際開發時建議將各 ... ... <看更多>
Search
Search
這篇是學習React 的useContext, useReducer 的一種實作方式,將相關程式碼放在一起方便閱讀,只是一個使用的範例提供紀錄與理解,實際開發時建議將各 ... ... <看更多>
react大大們, 有了useContext hook為什麼還需要useReducer,我可能miss out了一些東西? 我覺得useContext應該能取代useReducer了功能了,但是我看好多人都 ... ... <看更多>
import React from 'react'. const Store = React.createContext(). const useStore = () => React.useContext(Store). const reducer = (state, action) => {. ... <看更多>
you need to update text with latest text. selectedTodo has old data; todo have new text. in your handleSubmit please update below code ... <看更多>