7 lines
81 B
JavaScript
7 lines
81 B
JavaScript
function Component(props) {
|
|
let a;
|
|
[a, b] = props.value;
|
|
|
|
return [a, b];
|
|
}
|