Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...</>?
Code:
function AboutPage() {
return (
<h1>About</h1>
<p>Hello there.<br/>How do you do?</p>
);
}
export default AboutPage;
Error:
Compiled with problems:X
ERROR in ./src/App.js
Module build failed (from ./no...
mahendranreactjs.hashnode.dev2 min read