Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/infer-function-React-memo.expect.md
T
2026-08-27 21:09:14 +00:00

406 B

Input

// @compilationMode:"infer"
React.memo(props => {
  return <div />;
});

Code

import { c as _c } from "react/compiler-runtime"; // @compilationMode:"infer"
React.memo((props) => {
  const $ = _c(1);
  let t0;
  if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
    t0 = <div />;
    $[0] = t0;
  } else {
    t0 = $[0];
  }
  return t0;
});