I have a React application and the following error is output in the dev console in IE11:
Warning: The tag
<main>
is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
I believe this is due to the fact that the <main>
element is not supported by Internet Explorer.
I don't see anything wrong with the application at first glance. It seems to render properly so this is more for my peace of mind, but is there any way to force IE to recognize the tag (maybe with an html5 shim or some other method) so that this console error goes away?