Yoda/src/app/browser/main.rs
2024-09-20 18:02:10 +03:00

16 lines
237 B
Rust

#[path = "main/tab.rs"]
mod tab;
use gtk::prelude::BoxExt;
use gtk::Box;
pub fn new() -> Box {
let main = Box::builder()
.orientation(gtk::Orientation::Vertical)
.build();
main.append(&tab::new());
main
}