Closed2
React v18 にしたら "'MyComponent' cannot be used as a JSX component" エラー出た
React v17 から v18 に上げたところ以下のようなエラーに遭遇。解決方法メモっていく。
'MyComponent' cannot be used as a JSX component
解決
tsconfig.json の path alias で無理やり local の node_modules 内の @types/react を参照してあげれば解決する。
tsconfig.json
//...
"paths": {
"@/*": ["src/*"],
+ "react": ["./node_modules/@types/react"]
}
//...
このスクラップは2024/03/05にクローズされました