TS7026
error TS7026: JSX element implicitly has type ‘any’ because no interface ‘JSX.IntrinsicElements’ exists.
Broken Code ❌
1 |
|
Fixed Code ✔️
The global JSX namespace is declared in @types/react
. You have to install the @types/react
package to make use of it:
1 |
|