Files
react/compiler/crates/react_hermes_parser/tests/fixtures/prop-capturing-function-1.js
2024-04-02 16:49:31 -07:00

8 lines
110 B
JavaScript

function component(a, b) {
let z = { a, b };
let x = function () {
console.log(z);
};
return x;
}