JSTQL-JS-Transform/output_testing/1150debugger-memoized.js

11 lines
No EOL
201 B
JavaScript

function Component(props) {
const x = [];
debugger;
props.value |> x.push(%);
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: ["TodoAdd"],
isComponent: "TodoAdd"
};