dioxus_showcase_core/lib.rs
1//! Core types and helpers for dioxus-showcase.
2
3pub mod config;
4pub mod manifest;
5pub mod runtime;
6
7pub use config::{ShowcaseBuildConfig, ShowcaseConfig, ShowcaseDevConfig, ShowcaseProjectConfig};
8pub use manifest::{StoryDefinition, StoryManifest};
9pub use runtime::{
10 build_story_navigation, ProviderDefinition, ShowcaseRegistry, StoryEntry, StoryNavigationNode,
11 StoryTreeEntry,
12};