mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
6 lines
106 B
JavaScript
6 lines
106 B
JavaScript
function Component(a, b) {
|
|
const [c, , ...d] = a;
|
|
const [[[e]], ...[f]] = b;
|
|
return [c, d, e, f];
|
|
}
|