Skip to content
Advertisement

The tag is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter

MyIcons.tsx

JavaScript

MyFile.tsx

JavaScript

Errors:

The tag <ICONCAR> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter

The tag <ICONHOME> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

i am getting the above error

if <ICONHOME></ICONHOME> or <ICONCAR></ICONCAR> works instead of <IconComponent ></IconComponent>

Advertisement

Answer

You need to do a mapping between sring and react component. Even tough the names may be equals it has to be done.

Here is an example:

JavaScript
Advertisement