//not allowed
 return (
 <h2>Welcome!</h2>
 <p>React is awesome!</p>
);
return (
<>
 <h2>Welcome!</h2>
 <p>React is awesome!</p>
<>
);