DEV Community

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

Collapse
 
devshehata profile image
Mahmoud Shehata

Yup that looks great! will start using that for sure! Thanks for the tip

Collapse
 
amorriscode profile image
Anthony M.

There is an excellent shorthand for fragments too!

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