feedo/ui/mod.rs
1//! Terminal UI components.
2//!
3//! This module contains all UI-related code including:
4//! - Screen rendering
5//! - Input handling
6//! - Widget components
7
8pub mod input;
9mod render;
10pub mod state;
11pub mod widgets;
12
13pub use render::LOGO;
14pub use state::{FeedListItem, Mode, Panel, UiState};