yew-nav-link 0.10.0

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

//! Core navigation primitives.
//!
//! Provides semantic building blocks for navigation lists: items, lists,
//! and dividers with proper ARIA attributes.

mod divider;
mod item;
mod list;

pub use divider::{NavDivider, NavDividerProps};
pub use item::{NavItem, NavItemProps};
pub use list::{NavList, NavListProps};