You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users need to be able to navigate between the pages of our application in order to access all of its features. There is a navigation bar in the Layout.jsx component, but it's not quite feature-complete: the links in the nav element don't actually allow the user to navigate from page to page.
Acceptance criteria
The nav element is added to the Layout component
Links to the "Home", "List", and "Add item" pages of the app are In the nav element
The links all function as expected using the NavLink component from react-router-dom
While a standard anchor element (<a>) could allow a user to navigate from page to page, the NavLink component adds additional behavior that is essential to our app functioning correctly!
The text was updated successfully, but these errors were encountered:
jeremiahfallin
changed the title
2. As a user, I want to be able to navigate to all the pages in the application by clicking the links in the nav bar
3. As a user, I want to be able to navigate to all the pages in the application by clicking the links in the nav bar
Dec 29, 2023
Summary
Users need to be able to navigate between the pages of our application in order to access all of its features. There is a navigation bar in the
Layout.jsx
component, but it's not quite feature-complete: the links in the nav element don't actually allow the user to navigate from page to page.Acceptance criteria
nav
element is added to theLayout
componentnav
elementNavLink
component fromreact-router-dom
Notes
NavLink
component will come in very handy!<a>
) could allow a user to navigate from page to page, theNavLink
component adds additional behavior that is essential to our app functioning correctly!The text was updated successfully, but these errors were encountered: