webapp-frontend 1.0.0

A web application completely written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! All available routes within this application for fragment based routing

use yew_router::routes;

routes! {
    Error => "/error",
    Loading => "/loading",
    Login =>  "/login",
    Content => "/content",
}