ratatui-toolkit 0.2.6

DEPRECATED: this crate was renamed to `ratkit`. Please migrate to `ratkit`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Showcase Demo - Demonstrates all ratatui-toolkit components
//!
//! Run with: cargo run --example showcase
//! Or: just dev

mod app;
mod constants;
mod demo_tab;
mod handlers;
mod helpers;
mod render;

fn main() -> std::io::Result<()> {
    handlers::main_loop_handler::run_main_loop()
}