feat: add artist views

This commit is contained in:
Lei Nelissen
2023-04-28 23:35:06 +02:00
parent 130b18bc2e
commit c9036b56ed
9 changed files with 401 additions and 4 deletions

View File

@@ -1,10 +1,13 @@
import { StackNavigationProp } from '@react-navigation/stack';
import { SectionArtistItem } from 'store/music/selectors';
import { Album } from 'store/music/types';
export type StackParams = {
[key: string]: Record<string, unknown> | undefined;
[key: string]: Record<string, unknown> | object | undefined;
Albums: undefined;
Album: { id: string, album: Album };
Artists: undefined;
Artist: SectionArtistItem;
Playlists: undefined;
Playlist: { id: string };
RecentAlbums: undefined;