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

@ -19,14 +19,15 @@ pub fn new() -> Box
.build();
// Compose childs
subject.append(
&title::new()
);
// Compose childs
subject.append(
&title::new()
);
subject.append(
&description::new()
);
subject.append(
&description::new()
);
return subject;
// Done
subject
}