6 lines
88 B
Rust
Raw Normal View History

2024-09-18 22:07:52 +03:00
use gtk::Notebook;
pub fn new() -> Notebook
{
return Notebook::builder().build();
}