Files
react/compiler/crates/react_fixtures/tests/fixtures/destructure-object.js
2024-04-02 16:49:31 -07:00

16 lines
195 B
JavaScript

function Component(a, b) {
const {
c,
d,
e: { e },
f: { _f: f },
g: {
g: {
g: { g, ...h },
},
},
...i
} = a;
return [c, d, e, f, g, h, i];
}