Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/call-with-independently-memoizable-arg.js
2026-08-27 21:09:14 +00:00

10 lines
148 B
JavaScript

function Component(props) {
const x = makeFunction(props);
const y = x(
<div>
<span>{props.text}</span>
</div>
);
return y;
}