23 lines
417 B
JavaScript
23 lines
417 B
JavaScript
// should not remove when destructuring into existing bindings
|
|
({ a2, ...b2 } = c2);
|
|
|
|
class Comp extends React.Component {
|
|
render() {
|
|
const {
|
|
excluded,
|
|
excluded2: excludedRenamed,
|
|
used,
|
|
used2: usedRenamed,
|
|
...props
|
|
} = this.props;
|
|
|
|
console.log(used, usedRenamed);
|
|
|
|
return React.createElement("input", props);
|
|
}
|
|
}
|
|
|
|
function smth({ unused, ...rest }) {
|
|
call(rest);
|
|
}
|