The feature is described here: https://reactjs.org/docs/fragments.html#short-syntax
Basically,
<>
<Child1 />
<Child2 />
</>
would be transpiled to
<React.Fragment>
<Child1 />
<Child2 />
</React.Fragment>
It is available for Babel 7.x: https://reactjs.org/blog/2017/11/28/react-v16.2.0-fragment-support.html#support-for-fragment-syntax
Looks like this is already supported. It works for me 馃
https://codesandbox.io/s/7o3vyq4o40
Thank you @danieldelcore !
Yeah, we now support this 馃帀
Most helpful comment
Thank you @danieldelcore !
Yeah, we now support this 馃帀