Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/temporary-at-start-of-value-block.js
T

6 lines
188 B
JavaScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
function component(props) {
// NOTE: the temporary for the leading space was previously dropped
const x = isMenuShown ? <Bar> {props.a ? props.b : props.c}</Bar> : null;
return x;
}