Skip to content

Commit

Permalink
add back deleted code
Browse files Browse the repository at this point in the history
  • Loading branch information
DolceTriade committed Mar 17, 2024
1 parent 1b008ac commit 56c4ed5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions blade/routes/app.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
use crate::components::nav::Nav;
use crate::routes::artifact::Artifact;
use crate::routes::details::Details;
use crate::routes::empty::Empty;
use crate::routes::invocation::Invocation;
use crate::routes::summary::Summary;
use crate::routes::test::Test;
use leptos::*;
use leptos_meta::*;
use leptos_router::*;
Expand All @@ -22,6 +27,12 @@ pub fn App() -> impl IntoView {
<Nav name="Blade" logo="/pkg/static/logo.svg"/>
<main>
<Routes>
<Route path="invocation/:id" view=Invocation>
<Route path="*any" view=Summary/>
<Route path="test" view=Test/>
<Route path="details" view=Details/>
<Route path="artifact" view=Artifact/>
</Route>
<Route path="*" view=Empty/>
</Routes>
</main>
Expand Down

0 comments on commit 56c4ed5

Please sign in to comment.