Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.invalid-read-ref-prop-in-render-property-load.js
2026-08-27 21:09:14 +00:00

6 lines
153 B
JavaScript

// @validateRefAccessDuringRender @compilationMode:"infer"
function Component(props) {
const value = props.ref.current;
return <div>{value}</div>;
}