DEV Community

Discussion on: Beginner's experience with React - a shout for feedback

Collapse
 
amorriscode profile image
Anthony M.

There is an excellent shorthand for fragments too!

const Component = () => (
<>
  <span>
    Hello World
  </span>
</>
);