mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
8 lines
104 B
JavaScript
8 lines
104 B
JavaScript
function component(a) {
|
|
let z = { a };
|
|
let x = function () {
|
|
console.log(z);
|
|
};
|
|
return x;
|
|
}
|