//! # dioxus-shell
//!
//! **⚠️ Disclaimer:** This crate was entirely generated by AI (Claude) as part of a
//! personal learning project. It has not been battle-tested in production and may
//! contain bugs or unsound abstractions. Use at your own risk and exercise extreme
//! caution before depending on it in anything that matters.
//!
//! Application shell layout primitive for Dioxus.
//!
//! Provides [`AppShell`] — a persistent, always-visible split-pane layout
//! with named slots (sidebar, children, preview, footer). Headless: all
//! layout is CSS-driven via `data-shell*` attributes.
//!
//! ## Quick start
//!
//! ```rust,ignore
//! use dioxus_nox_shell::prelude::*;
//!
//! AppShell {
//! sidebar: rsx! { MySidebar {} },
//! MyMainContent {}
//! }
//! ```
pub use ;
pub use ;
pub use ;