How can I use comments inside the render method in a React component?
render
I have the following component:
\'use strict\';
According to React's Documentation, you can write comments in JSX like so:
One-line Comment:
{/* Comment goes here */} Hello, {name}!
Multi-line Comments:
{/* It also works for multi-line comments. */} Hello, {name}!