summaryrefslogtreecommitdiff
path: root/webapp/src/routing.rs
blob: b1e6e015945bd204cd4b49b8f16057ad88169a2f (plain)
1
2
3
4
5
6
7
8
9
10
use uuid::Uuid;
use yew_router::prelude::*;

#[derive(Clone, Routable, PartialEq)]
pub enum Route {
    #[at("/")]
    Home,
    #[at("/table/:id")]
    Table { id: Uuid },
}