Property myWidgetClassName does not exist on type JSX.IntrinsicElements.

0
Creating a custom pluggable widget causes this error: Property 'myWidgetClassName' does not exist on type 'JSX.IntrinsicElements'.  
asked
1 answers
0

The reason is this:

https://stackoverflow.com/a/58267090/1236397

Basically, make sure all types start with a capital letter. Don’t name your class to follow typically JS naming conventions for the HTML tags. This is a TypeScript specific issue.

answered