summaryrefslogtreecommitdiff
path: root/webapp/src/routing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/routing.rs')
-rw-r--r--webapp/src/routing.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/webapp/src/routing.rs b/webapp/src/routing.rs
index 57d4af0..b1e6e01 100644
--- a/webapp/src/routing.rs
+++ b/webapp/src/routing.rs
@@ -1,5 +1,5 @@
-use yew_router::prelude::*;
use uuid::Uuid;
+use yew_router::prelude::*;
#[derive(Clone, Routable, PartialEq)]
pub enum Route {
@@ -8,4 +8,3 @@ pub enum Route {
#[at("/table/:id")]
Table { id: Uuid },
}
-