prettier/tests/multiparser_markdown_js/jsx-comment.md

162 B

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