Add a common editor widget

This commit is contained in:
Elias Projahn 2021-02-01 18:31:05 +01:00
parent 6abd450452
commit 29e89580d8
8 changed files with 364 additions and 34 deletions

View file

@ -1,3 +1,9 @@
pub mod editor;
pub use editor::*;
pub mod entry_row;
pub use entry_row::*;
pub mod list;
pub use list::*;
@ -19,4 +25,7 @@ pub use screen::*;
pub mod section;
pub use section::*;
pub mod upload_section;
pub use upload_section::*;
mod indexed_list_model;