React Fragments
Render multiple react components without the need of a DOM elevent wrapper
const Columns = function () {
  return (
    <>
      <td>Hello</td>
      <td>World</td>
    </>
  )
}
- Next: useEffect hook in React
 - Previous: Conditional Rendering in React