here is the code
import React from 'react';
function Home() {
return (
<div className="home">
<h1>This is my home page!</h1>
</div>
<h2>Welcome and take a look around</h2>
</div>
);
}
export default Home;
Here is the error
./src/components/home.js Line 9:7: Parsing error: Adjacent JSX
elements must be wrapped in an enclosing tag. Did you want a JSX
fragment <>...</>?
7 | <h1>This is my home page!</h1>
8 | </div>
9 | <h2>Welcome and take a look around</h2>
| ^
10 | </div>