React Fragments

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