我有这段代码可以在函数组件内部创建上下文:
const App = () => {
const dispatchContext = createContext(dispatch)
return (
<div className="app">
<DispatchContext.Provider value={dispatchContext}>
由于我无法在类内部导出dispatchContext,因此如何使其他组件执行其static contextType?我必须在顶部创建上下文吗?