React Fragments

Used to return a list of multiple elements with a generic enclosing component that doesn't add any node to the DOM.

render() {
  return (
    <React.Fragment>
      <ChildA />
      <ChildB />
      <ChildC />
    </React.Fragment>
  );
}

Source