mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
7 lines
113 B
JavaScript
7 lines
113 B
JavaScript
// @debug
|
|
function Component(props) {
|
|
const x = makeObject();
|
|
const y = delete x[props.value];
|
|
return y;
|
|
}
|