React Fragments

Render multiple react components without the need of a DOM elevent wrapper

const Columns = function () {
return (
<>
<td>Hello</td>
<td>World</td>
</>
)
}