cloudflare_dns/ui/mod.rs
1/// UI components and application state management.
2///
3/// This module contains all TUI-related code including:
4/// - Application state and props
5/// - Event handling
6/// - Status messages
7/// - UI components
8/// - Theme/colors
9pub mod app;
10pub mod colors;
11pub mod components;
12pub mod constants;
13pub mod hooks;
14pub mod state;
15pub mod status;
16pub mod theme;
17
18// Re-export commonly used types
19pub use app::run_app;
20#[allow(unused_imports)]
21pub use state::{AppState, AppView};