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

17 lines
470 B
TypeScript

import { SafeAreaView } from "react-native-safe-area-context";
import { StackParamList } from "../types";
import { NativeStackNavigationProp } from "@react-navigation/native-stack";
interface AlbumProps {
albumId: string,
albumName?: string | null | undefined;
navigation: NativeStackNavigationProp<StackParamList>;
}
export default function Album(props: AlbumProps): React.JSX.Element {
return (
<SafeAreaView>
</SafeAreaView>
)
}