Reputation: 39
My issue is when I try to use "Link" in my Nav.js, I get an Error of
[
Upvotes: 0
Views: 296
Reputation: 1439
The first error
that may occurs will come from your Home
function component:-
App.js
:- edit your const
Home
to this (it should be wrap in return
):-const Home = () => {
return (
<div>
<h1>Homepage</h1>
</div>
)
}
Other than that everything will works just fine tho. Anyhow, you can see it here on this sandbox to compare it with your current code.
Upvotes: 1