Render multiple child components in React
No need to wrap children in a container component anymore. React Fiber will allow you to return more than one child component:
render() {
return [
<Child1>,
<Child2>
]
}
http://isfiberreadyyet.com/
Tweet