Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/inner-memo-value-not-promoted-to-outer-scope-static.expect.md
2026-08-27 21:09:14 +00:00

44 lines
680 B
Markdown

## Input
```javascript
function Component(props) {
const count = new MaybeMutable();
return (
<View>
<View>
{<span>Text</span>}
{<span>{maybeMutate(count)}</span>}
</View>
</View>
);
}
```
## Code
```javascript
import { c as _c } from "react/compiler-runtime";
function Component(props) {
const $ = _c(1);
let t0;
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
const count = new MaybeMutable();
t0 = (
<View>
<View>
<span>Text</span>
<span>{maybeMutate(count)}</span>
</View>
</View>
);
$[0] = t0;
} else {
t0 = $[0];
}
return t0;
}
```