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