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