kimun-notes 0.7.0

A terminal-based notes application
Documentation
1
2
3
4
5
6
7
8
9
use ratatui::Frame;

use crate::app::App;

pub fn ui(frame: &mut Frame, app: &mut App) {
    if let Some(screen) = &mut app.current_screen {
        screen.render(frame);
    }
}