Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/ref-current-write-not-added-to-dep.expect.md
T
2026-08-27 21:09:14 +00:00

523 B

Input

function VideoTab() {
  const ref = useRef();
  let x = () => {
    ref.current = 1;
  };

  return <VideoList videos={x} />;
}

Code

import { c as _c } from "react/compiler-runtime";
function VideoTab() {
  const $ = _c(1);
  const ref = useRef();
  let t0;
  if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
    const x = () => {
      ref.current = 1;
    };
    t0 = <VideoList videos={x} />;
    $[0] = t0;
  } else {
    t0 = $[0];
  }
  return t0;
}