diff --git a/src/ui/library.rs b/src/ui/library.rs new file mode 100644 index 0000000..30fb974 --- /dev/null +++ b/src/ui/library.rs @@ -0,0 +1,31 @@ +use cosmic::{Element, Task}; + +use crate::core::{ + images::Image, model::Model, presentations::Presentation, + songs::Song, videos::Video, +}; + +struct Library { + song_library: Model, + image_library: Model, + video_library: Model