agadir 0.1.0

Blogging over the terminal
Documentation
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);
}