30 lines
No EOL
504 B
Markdown
30 lines
No EOL
504 B
Markdown
---
|
|
title: "jsx comments"
|
|
date: 2020-05-26T11:59:43+02:00
|
|
draft: false
|
|
snippet_types: ["react", "jsx"]
|
|
---
|
|
|
|
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:
|
|
|
|
```jsx
|
|
<div>
|
|
<!-- comment here -->
|
|
<h2>Hello world</h2>
|
|
</div>
|
|
```
|
|
|
|
**Instead do this:**
|
|
|
|
```jsx
|
|
<div>
|
|
{/* comment here */}
|
|
<h2>Hello world</h2>
|
|
</div>
|
|
```
|
|
|
|
source:
|
|
|
|
https://wesbos.com/react-jsx-comments |