1 2 3 4 5 6 7
use ratatui::Frame; use crate::app::App; pub fn render(app: &mut App, frame: &mut Frame) { app.render(frame); }