//! # Mogwai: Cross-Platform UI Library
//!
//! Mogwai is a Rust library for building UI components that work across platforms,
//! but primarily in the browser.
//!
//! ## Key Concepts
//!
//! - **Low boilerplate view construction**: Use the [`rsx!`](view::rsx) macro to reduce boilerplate.
//! - **Async event handling**: Events are futures, not callbacks.
//! - **Cross-platform support**: [View traits](crate::view) ensure operations are cross-platform,
//! with room for specialization.
//! - **Idiomatic Rust**: Widgets are Rust types
//!
//! Mogwai provides tools to implement these concepts efficiently, promoting flexibility and performance.
pub use strStr;
doctest!;