Files

38 lines
625 B
Markdown
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
## Input
```javascript
// @validateRefAccessDuringRender false
function VideoTab() {
const ref = useRef();
let x = () => {
console.log(ref.current.x);
};
return <VideoList videos={x} />;
}
```
## Code
```javascript
import { c as _c } from "react/compiler-runtime"; // @validateRefAccessDuringRender false
function VideoTab() {
const $ = _c(1);
const ref = useRef();
let t0;
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
const x = () => {
console.log(ref.current.x);
};
t0 = <VideoList videos={x} />;
$[0] = t0;
} else {
t0 = $[0];
}
return t0;
}
```