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