musichoard/src/tui/ui/fetch.rs
Wojciech Kozlowski 9d1caffd9c
All checks were successful
Cargo CI / Build and Test (push) Successful in 1m52s
Cargo CI / Lint (push) Successful in 1m7s
Handle idle time between fetch results (#212)
Closes #211

Reviewed-on: #212
2024-09-08 23:23:53 +02:00

10 lines
178 B
Rust

use ratatui::widgets::Paragraph;
pub struct FetchOverlay;
impl FetchOverlay {
pub fn paragraph<'a>() -> Paragraph<'a> {
Paragraph::new(" -- fetching --")
}
}