tui-realm-stdlib 4.0.0

Standard components library for tui-realm.
Documentation
//! # tui-realm-stdlib
//!
//! [tui-realm-stdlib](https://github.com/veeso/tui-realm/tree/feature/main/crates/tuirealm-stdlib) is the standard library component for [tui-realm](https://github.com/veeso/tui-realm).
//! This library provides you with all the essential components you'll need to build a tui-realm application.
//!
//! ## Get Started
//!
//! ### Adding `tui-realm-stdlib` as dependency
//!
//! ```toml
//! tuirealm = "4"
//! tui-realm-stdlib = "4"
//! ```
//!

#![doc(html_playground_url = "https://play.rust-lang.org")]
#![doc(
    html_favicon_url = "https://raw.githubusercontent.com/veeso/tui-realm/main/crates/tuirealm-stdlib/docs/images/cargo/tui-realm-128.png"
)]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/veeso/tui-realm/main/crates/tuirealm-stdlib/docs/images/cargo/tui-realm-128.png"
)]

pub mod components;
pub mod prop_ext;
pub mod utils;