Skip to content

Commit

Permalink
Added ML Hub to sidebar and router link (#352)
Browse files Browse the repository at this point in the history
* sidebar link

* added ml hub to router
  • Loading branch information
dhannywi authored Feb 28, 2024
1 parent 58fac57 commit c000a12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tapis-app/_Router/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ const Router: React.FC = () => {
<ProtectedRoute path="/workflows">
<Workflows />
</ProtectedRoute>
<ProtectedRoute path="/ml-hub">
{/* TODO: create ML Hub */}
</ProtectedRoute>
<Route path="/uipatterns">
<SectionHeader>UI Patterns</SectionHeader>
<UIPatterns />
Expand Down
3 changes: 3 additions & 0 deletions src/tapis-app/_components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ const Sidebar: React.FC = () => {
<NavItem to="/workflows" icon="publications">
Workflows
</NavItem>
<NavItem to="/ml-hub" icon="share">
ML Hub
</NavItem>
</>
)}
</Navbar>
Expand Down

0 comments on commit c000a12

Please sign in to comment.