Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 511 Bytes

react-comments.md

File metadata and controls

24 lines (16 loc) · 511 Bytes

How to write comments in React?

Answer

The comments in React are similar to JavaScript multiline comments which are wrapped with curly braces. When using JSX they look like this:

render() => (<div>
  {/* single-line comments */}
  Hey {user}, write cool comments
  {/* multi-line
  comments */}
</div>)

Good to hear

Additional links