use yew_router::prelude::*; use uuid::Uuid; #[derive(Clone, Routable, PartialEq)] pub enum Route { #[at("/")] Home, #[at("/playground")] Playground, #[at("/table/:id")] Table { id: Uuid }, }