6 lines
90 B
JavaScript
6 lines
90 B
JavaScript
|
function Component(props) {
|
||
|
let x = mutate();
|
||
|
let y;
|
||
|
x |> foo(%);
|
||
|
return [y, x];
|
||
|
}
|