prettier/tests/multiparser_markdown_js/jsx-comment.md

13 lines
162 B
Markdown

```jsx
const Foo = () => {
return (
<div>
{/*
This links to a page that does not yet exist.
*/}
<hr />
</div>
);
};
```