jsx-transform icon indicating copy to clipboard operation
jsx-transform copied to clipboard

[feature request] Spread children

Open coolreader18 opened this issue 6 years ago • 0 comments

In facebook/jsx#57, the JSX spec was updated to allow for spreading children, basically turning

(
  <div>
    {...children}
  </div>
)

into

factory('div', null, ...children)

This is a useful syntax, and it'd be great if it could be added to this transformer.

coolreader18 avatar Apr 23 '18 04:04 coolreader18