我正在react
使用 using进行一个项目,typescript
但我很难弄清楚为什么会发生此错误,基本上,因此我无法使用createContext
我在互联网上找到的任何示例。这是我从这里得到的:https : //github.com/typescript-cheatsheets/react-typescript-cheatsheet我正在尝试使用上下文部分中显示的相同内容。
import * as React from "react";
export function createCtx<A>(defaultValue: A) {
type UpdateType = React.Dispatch<React.SetStateAction<typeof defaultValue>>;
const defaultUpdate: UpdateType = () => defaultValue;
const ctx = React.createContext({
state: defaultValue,
update: defaultUpdate
});
function Provider(props: React.PropsWithChildren<{}>) {
const [state, update] = React.useState(defaultValue);
return <ctx.Provider value={{ state, update }} {...props} />;
}
return [ctx, Provider] as [typeof ctx, typeof Provider];
}
问题是每次它说有这个错误无法ctx
在行中找到命名空间时:
return <ctx.Provider value={{ state, update }} {...props} />;
我仍然无法弄清楚为什么,有人可以看看我在这里做错了吗?这是我的 tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"noImplicitAny": false,
"strictNullChecks": false
},
"include": [
"src"
]
}
任何帮助,将不胜感激!