jsx-spread.js6 lines
mainRaw
function Component(props) {
  return (
    <Component {...props} {...{bar: props.cond ? props.foo : props.bar}} />
  );
}
Loading syntax highlighting…