Self review: Creating a route - React Basic

Self review: Creating a route - React Basic

  1. What did you need to install in order to create routes?

    • react-router-dom

    • three.js

    • router-dom

    • react-dom

  2. Instead of anchor tags, what tag did you use with React Router?

    • the to attribute

    • the Link tag

    • the element attribute

    • the To tag

  3. 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.