Files
App/components/types.tsx
T
Violet Caulfield 52d03bd65f make logos bigger
build out navigation from artist to album
2024-12-29 16:38:00 -06:00

20 lines
516 B
TypeScript

import { NativeStackScreenProps } from "@react-navigation/native-stack";
export type StackParamList = {
Home: undefined;
Artist: {
artistId: string,
artistName: string
};
Album: {
albumId: string,
albumName: string,
};
}
export type ProvidedHomeProps = NativeStackScreenProps<StackParamList, 'Home'>;
export type HomeArtistProps = NativeStackScreenProps<StackParamList, 'Artist'>;
export type HomeAlbumProps = NativeStackScreenProps<StackParamList, 'Album'>;