orbital-ui 0.1.1

Leptos component library and design system for focused, accessible product UIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared preview fixtures for `#[component_doc]` live examples.
//!
//! Feature-gated helpers that supply mock data, context providers, and styled
//! demo sections so component previews stay self-contained in the owning crate.

#[cfg(feature = "preview")]
mod infinite_scroll;
#[cfg(feature = "preview")]
mod navigation_sample;

#[cfg(feature = "preview")]
pub use infinite_scroll::mock_fetch_items;
#[cfg(feature = "preview")]
pub use navigation_sample::sample_navigation_view;