gpui_router/
lib.rs

1mod hooks;
2mod layout;
3mod nav_link;
4mod outlet;
5mod route;
6mod router;
7#[cfg(test)]
8mod router_tests;
9mod routes;
10mod state;
11
12pub use gpui_router_macros::*;
13pub use hooks::*;
14pub use layout::*;
15pub use nav_link::*;
16pub use outlet::*;
17pub use route::*;
18pub use router::*;
19pub use routes::*;
20pub use state::*;
21
22pub fn init(cx: &mut gpui::App) {
23  RouterState::init(cx);
24}