What did you need to install in order to create routes?
react-router-dom
three.js
router-dom
react-dom
Instead of anchor tags, what tag did you use with React Router?
the to attribute
the Link tag
the element attribute
the To tag
What's wrong with this code?
<Link to="/" className="nav-item" href="/"> Home <Link>
The to attribute can't have just the "/" value.
The href attribute should not be used here.
You cannot have hyphens in the value of the className attribute.