1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//! Dioxus-Router
//!
//! A simple match-based router and router service for most routing needs.
//!
//! Dioxus-Router is not a *declarative* router. Instead it uses a simple parse-match
//! pattern which can be derived via a macro.
//!
//! ```rust
//! fn app(cx: Scope) -> Element {
//! }
//!
//!
//!
//!
//!
//! ```
//!
//!
//!
//!
//!
//!
//!
//!
//!

mod hooks {
    mod use_route;
    pub use use_route::*;
}
pub use hooks::*;

mod components {
    #![allow(non_snake_case)]

    mod router;
    pub use router::*;

    mod route;
    pub use route::*;

    mod link;
    pub use link::*;
}
pub use components::*;

mod platform;
mod routecontext;
mod service;
mod utils;

pub use routecontext::*;
pub use service::*;