mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
5 lines
70 B
JavaScript
5 lines
70 B
JavaScript
function Foo(props) {
|
|
const { x, y, ...z } = props.a;
|
|
return x;
|
|
}
|