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