Cannot find namespace 'ctx' error when creating Context with react - typescript Cannot find namespace 'ctx' error when creating Context with react - typescript typescript typescript

Cannot find namespace 'ctx' error when creating Context with react - typescript


Your file extension is most likely .ts instead of .tsx.

Therefore TypeScript is interpreting <ctx.Provider as cast and tries to find a type Provider in the namespace ctx.


Please use tsx instead of ts it has some minute differences. tsx obviously allows the usage of jsx tags inside typescript.