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