mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
11 lines
163 B
JavaScript
11 lines
163 B
JavaScript
// Let's not support identifiers defined after use for now.
|
|
function component(a) {
|
|
let y = function () {
|
|
m(x);
|
|
};
|
|
|
|
let x = { a };
|
|
m(x);
|
|
return y;
|
|
}
|