JSTQL-JS-Transform/output_testing/535useMemo-inlining-block-return.js

10 lines
140 B
JavaScript
Raw Normal View History

function component(a, b) {
let x = (() => {
if (a) {
return {
b
};
}
}) |> useMemo(%, [a, b]);
return x;
}