ReactJS - How to use comments?

后端 未结 13 1770
情深已故
情深已故 2020-12-04 08:17

How can I use comments inside the render method in a React component?

I have the following component:

\'use strict\';
          


        
13条回答
  •  死守一世寂寞
    2020-12-04 08:48

    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}!

提交回复
热议问题