Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/ref-current-optional-field-no-added-to-dep.js
2026-08-27 21:09:14 +00:00

9 lines
127 B
JavaScript

function VideoTab() {
const ref = useRef();
let x = () => {
ref.current?.x;
};
return <VideoList videos={x} />;
}