tui_realm_stdlib/
lib.rs

1//! # tui-realm-stdlib
2//!
3//! [tui-realm-stdlib](https://github.com/veeso/tui-realm-stdlib) is the standard library component for [tui-realm](https://github.com/veeso/tui-realm).
4//! This library provides you with all the essential components you'll need to build a tui-realm application.
5//!
6//! ## Get Started
7//!
8//! ### Adding `tui-realm-stdlib` as dependency
9//!
10//! ```toml
11//! tuirealm = "2"
12//! tui-realm-stdlib = "2"
13//! ```
14//!
15
16#![doc(html_playground_url = "https://play.rust-lang.org")]
17#![doc(
18    html_favicon_url = "https://raw.githubusercontent.com/veeso/tui-realm-stdlib/main/docs/images/cargo/tui-realm-128.png"
19)]
20#![doc(
21    html_logo_url = "https://raw.githubusercontent.com/veeso/tui-realm-stdlib/main/docs/images/cargo/tui-realm-512.png"
22)]
23
24mod components;
25pub mod utils;
26pub use components::props;
27pub use components::*;