Skip to content

Commit

Permalink
update nav
Browse files Browse the repository at this point in the history
  • Loading branch information
nikrooz committed Oct 18, 2024
1 parent 89beaf7 commit f4440dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/web-ui/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ export default function App() {
<Nav ariaCurrentValue="page">
<NavItem href={'/overview'}>Overview</NavItem>
<NavItem href={'/invocations'}>Invocations</NavItem>
<NavItem href={'/workflows'}>Workflows</NavItem>
</Nav>
</LayoutOutlet>
</div>
Expand Down
3 changes: 3 additions & 0 deletions apps/web-ui/app/routes/invocations.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { invocations } from '@restate/features/invocations-route';

export default invocations.Component;
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ function Component() {
return <div></div>;
}

export const overview = { Component };
export const invocations = { Component };

0 comments on commit f4440dd

Please sign in to comment.