ReachHooks之父子组件传值父组件子组件传值
一般我们会使用useContext和createContext来进行父子组件的传值 官网父组件我们使用计数器作为父组件function App() { const [count, setCount] = useState(0); return ( <> <div>次数:{count}</div> <button onClick={() => {setCou