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