mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
8 lines
90 B
JavaScript
8 lines
90 B
JavaScript
function component() {
|
|
function x(a) {
|
|
a.foo();
|
|
}
|
|
function x() {}
|
|
return x;
|
|
}
|