leptos_router 0.0.1

Router for the Leptos web framework.
Documentation
1
2
3
4
5
6
7
8
9
mod action;
mod loader;

use std::{future::Future, pin::Pin};

pub use action::*;
pub use loader::*;

pub(crate) type PinnedFuture<T> = Pin<Box<dyn Future<Output = T>>>;