JSTQL-JS-Transform/output_testing/590nested-scopes-hook-call.js

7 lines
127 B
JavaScript
Raw Normal View History

function component(props) {
let x = [];
let y = [];
props.foo |> useHook(%) |> y.push(%);
y |> x.push(%);
return x;
}