Src/main.tsx(4,62): error TS2345: Argument of type "Element" is not assignable to parameter of type "ReactNode". 9:26:17 AM: Property "children" is missing in type "Element" but required in type "ReactPortal"

I fixed the problem by adding the following to tsconfig.json

“paths”: {
“react”: [“./node_modules/@types/react”]
},

1 Like