yew-nav-link 0.9.4

Navigation link component for Yew with automatic active state detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: 2024-2026 RAprogramm <andrey.rozanov-vl@gmail.com>
// SPDX-License-Identifier: MIT

pub mod mode;
pub mod nav_link;
pub mod props;
pub mod utils;

pub use mode::Match;
pub use nav_link::{NavLink, nav_link};
pub use props::NavLinkProps;
pub use utils::is_path_prefix;