Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/capturing-function-member-expr-arguments.js
2026-08-27 21:09:14 +00:00

11 lines
160 B
JavaScript

function Foo(props) {
const onFoo = useCallback(
reason => {
log(props.router.location);
},
[props.router.location]
);
return onFoo;
}