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