bitrouter-tui 0.1.4

Interactive terminal UI for BitRouter
Documentation
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);
}