Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-seed-keys-jsx.md
2024-09-25 13:04:27 +05:30

421 B

--seed--

--seed-contents--

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

::id{#key-for-css}

body {
  background: green;
}

::id{#key-for-jsx}

var x = 'y';

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

--before-user-code--

function setup() {}

--after-user-code--

function teardown(params) {
  // after
}