mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-09 03:58:33 -06:00
17 lines
470 B
TypeScript
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>
|
|
)
|
|
} |