mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-17 02:00:02 +00:00
16 lines
237 B
Rust
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
|
|
}
|