tano-tui 0.1.0

Tano terminal user interface
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::components::{
    album::AlbumProps, albums::AlbumsProps, artists::ArtistsProps, overview::OverviewProps,
    songs::SongsProps,
};

#[derive(Debug, Default, Clone)]
pub enum View {
    #[default]
    Loading,
    Songs(SongsProps),
    Album(AlbumProps),
    Albums(AlbumsProps),
    Artists(ArtistsProps),
    Overview(OverviewProps),
}