JSTQL-JS-Transform/output_testing/1244capturing-arrow-function-1.js

14 lines
212 B
JavaScript
Raw Normal View History

function component(a) {
let z = {
a
};
let x = () => {
z |> console.log(%);
};
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: component,
params: ["TodoAdd"],
isComponent: "TodoAdd"
};