Files

7 lines
93 B
JavaScript

function Component(props) {
const x = [];
debugger;
x.push(props.value);
return x;
}