Nextjs 문제 - {} 유형에 하위 속성이 존재하지 않습니다.
<p>저는 React와 Next.js를 사용하고 있습니다. 아래는 제 코드입니다. <code>children</code> 속성에 오류가 발생합니다. 오류 메시지는 {} 유형의 <strong>Property children입니다. 존재하지 않습니다</strong></p>
<pre class="brush:php;toolbar:false;">"다음"에서 { NextPage } 가져오기;
import { createContext, useContext, useReducer, Dispatch } from "react";
"../types"에서 { GlobalStatesType }을 가져옵니다.
"../reducers"에서 감속기, { ActionType,initialState }를 가져옵니다.
const StateContext 내보내기 = createContext<{
상태: GlobalStatesType;
디스패치: Dispatch<ActionType>
}>({
상태: 초기 상태,
파견: () =>
});
const StateProvider 내보내기: NextPage = ({ 하위 }) =>
const [states, dispatch] = useReducer(reducer,initialState);
반품 (
<StateContext.Provider value={{ 상태, 디스패치 }}>
{ 어린이들 }
</StateContext.Provider>
);
};
내보내기 const useStatesValue = () => useContext(StateContext);</pre>
<p>가져온 다음 함수의 컨텍스트에서 코드를 어떻게 작성하나요? </p>