mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
16 lines
195 B
JavaScript
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];
|
|
}
|