Skip to content

Commit

Permalink
moved sign in slash sign out button to far right of nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
arandel1 committed Oct 2, 2024
1 parent 64c6263 commit 89e9451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ export function Layout() {
</header>
<nav className="Nav">
<div className="Nav-container">
{user ? <SignOutButton /> : <SignInButton />}

<NavLink to="/" style={handleActive}>
Home
</NavLink>
Expand All @@ -42,6 +40,8 @@ export function Layout() {
<NavLink to="/manage-list" style={handleActive}>
Manage List
</NavLink>

{user ? <SignOutButton /> : <SignInButton />}
</div>
</nav>

Expand Down

0 comments on commit 89e9451

Please sign in to comment.