Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Jan 3, 2024
1 parent a8d61a3 commit 05a54c1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const NavigationComponent: React.FunctionComponent<{ items: Array<any> }> = ({ i
{items.filter(item => item.position == 'left').map((item, idx) => {
return(
<NavbarItem
key = {idx}
item = {item}
idx = {idx}
/>
Expand All @@ -23,6 +24,7 @@ const NavigationComponent: React.FunctionComponent<{ items: Array<any> }> = ({ i
{items.filter(item => item.position == 'right').map((item, idx) => {
return(
<NavbarItem
key= {idx}
item = {item}
idx = {idx}
/>
Expand Down

0 comments on commit 05a54c1

Please sign in to comment.