Back to Freecodecamp

--seed--

tools/challenge-parser/parser/__fixtures__/with-seed-keys-jsx.md

latest261 B
Original Source

--seed--

--seed-contents--

html
<html>
  <body>
  </body>
</html>

::id{#key-for-css}

css
body {
  background: green;
}

::id{#key-for-jsx}

jsx
var x = 'y';

/* comment */
const Button = () => {
  return <button> text </button>;
};