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