How to write comments in React?
The comments in React/JSX are similar to JavaScript Multiline comments but are wrapped in curly braces.
Single-line comments:
<div>{/* Single-line comments(In vanilla JavaScript, the single-line comments are represented by double slash(//)) */}{`Welcome ${user}, let's play React`}</div>
Multi-line comments:
<div>{/* Multi-line comments for more thanone line */}{`Welcome ${user}, let's play React`}</div>
February 27, 2022
638
Read more
What is React?
November 06, 2022
ReactJSHow to programmatically trigger click event in React?
November 06, 2022
ReactJS