504 B
504 B
| title | date | draft | snippet_types | ||
|---|---|---|---|---|---|
| jsx comments | 2020-05-26T11:59:43+02:00 | false |
|
The other day at work we have an html comment in jsx slip on to stage. Made me relize I didn't know how to leave comments in jsx myself.
So as a reminder DON'T do this:
<div>
<!-- comment here -->
<h2>Hello world</h2>
</div>
Instead do this:
<div>
{/* comment here */}
<h2>Hello world</h2>
</div>
source: