如果静态contextType是从提供程序传递的值传递的,该如何传递?

时间:2020-02-08 01:32:52

标签: reactjs react-hooks

我有这段代码可以在函数组件内部创建上下文:

const App = () => {
 const dispatchContext = createContext(dispatch)
    return (
        <div className="app">
            <DispatchContext.Provider value={dispatchContext}>

由于我无法在类内部导出dispatchContext,因此如何使其他组件执行其static contextType?我必须在顶部创建上下文吗?

0 个答案:

没有答案