React Hooks 使用 useContext

import React, { useState, createContext, useContext } from "react";
const CountContext = createContext(); // 使用 Context

function Foo() {
  const count = useContext(CountContext); // 使用useContext
  return 

{count}

; } // hooks组件 function App() { const [count, setCount] = useState(0); // useState 默认值 0 返回一个数组,第一个是变量,第二个修改变量的方法 return (
); } export default App;

 

你可能感兴趣的:(react)