How can I use comments inside the render method in a React component?
render
I have the following component:
\'use strict\';
{ // any valid js expression }
If you wonder why does it work? it's because everything that's inside curly braces { } is a javascript expression,
so this is fine as well:
{ /* yet another js expression */ }