Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/useMemo-simple.js
T
2026-08-27 21:09:14 +00:00

5 lines
89 B
JavaScript

function component(a) {
let x = useMemo(() => [a], [a]);
return <Foo x={x}></Foo>;
}