init browser actions, add menu items

This commit is contained in:
yggverse 2024-09-19 18:08:09 +03:00
parent 930cb663ba
commit 1c1907741d
5 changed files with 99 additions and 35 deletions

View file

@ -15,16 +15,17 @@ pub fn new() -> Box
.spacing(8)
// Make
.build();
// Compose childs
tray.append(
&menu::new()
);
// Compose childs
tray.append(
&menu::new()
);
tray.append(
&tab::new()
);
tray.append(
&tab::new()
);
return tray;
tray
}