sql_cli/widgets/mod.rs
1//! UI widgets for the TUI application
2//!
3//! This module contains all reusable UI components/widgets
4//! used by the TUI for rendering different parts of the interface.
5
6pub mod crosshair_widget;
7pub mod debounced_input;
8pub mod debug_widget;
9pub mod editor_widget;
10pub mod help_widget;
11pub mod history_widget;
12pub mod search_modes_widget;
13pub mod stats_widget;
14pub mod tab_bar_widget;