React-Hooksはstateよりreducerの方がサンプルとしてわかりやすい気がした
3816 ワード
よくカウンターの例として state と setState を見る気がするけど、実は useReducer の方がわかりやすいのでは仮説。
import React from "react";
import ReactDOM from "react-dom";
function useCounter() {
return React.useReducer((state, i) => state + i, 10);
}
function App() {
const [count, countUp] = useCounter();
return (
<div className="App">
<h1>count: {count}</h1>
<h2>
<button onClick={() => countUp(1)}>count up</button>
<button onClick={() => countUp(-1)}>count down</button>
</h2>
</div>
);
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
けど、どうなんだろう。
Author And Source
この問題について(React-Hooksはstateよりreducerの方がサンプルとしてわかりやすい気がした), 我々は、より多くの情報をここで見つけました https://qiita.com/ma2saka/items/a8ee23ea363006b49487著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .