ReactJS - How to use comments?

后端 未结 13 1758
情深已故
情深已故 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:36

    According to the official site. These are the two ways

    {/* Comment goes here */} Hello, {name}!

    Second Example:

    {/* It also works for multi-line comments. */} Hello, {name}!

    Here is the link: https://reactjs.org/docs/faq-build.html#how-can-i-write-comments-in-jsx

提交回复
热议问题