yew-nav-link 0.9.0

Navigation link component for Yew with automatic active state detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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};