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