DEV Community

Mayank
Mayank

Posted on

Answer: Typing a dynamic tag in React with TypeScript?

JSX.IntrinsicElements no longer works with the new TypeScript version. It throws namespace JSX not found.

The solution is to use either ReactHTML from React or HTMLElementTagNameMap from lib.dom.d.ts (No need to import, works out of box).

So the full solution for allowing the HTML tags as well as React…

Top comments (0)