Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/jsx-spread.js
T
2026-08-27 21:09:14 +00:00

6 lines
122 B
JavaScript

function Component(props) {
return (
<Component {...props} {...{bar: props.cond ? props.foo : props.bar}} />
);
}