第25节——useContext

1、概念

接收一个 context 对象(React.createContext 的返回值)并返回该 context 的当前值 。主要用来获取统一注入的上下文,跟之前的context一样,只不过是提供了在hooks里面接收的方式

import React, { useState, useRef, useContext } from 'react';

import MyContext from './context'

export default function hook() {

  const context = useContext(MyContext)

  return (
    
哈喽--{context}
); }

你可能感兴趣的:(react,前端,javascript,react.js)