Files
App/components/Playlists/screen.tsx
Violet Caulfield 31f5a552db Favorite playlists, item detail changes
You can now view your favorite playlists in the Favorites tab

You can now see an updated layout of the item detail modal, including big clunky buttons for the queuing options and for viewing the album
2025-02-05 17:59:14 -06:00

12 lines
362 B
TypeScript

import { NativeStackScreenProps } from "@react-navigation/native-stack";
import { StackParamList } from "../types";
import Playlists from "./component";
import React from "react";
export default function PlaylistsScreen(
props: NativeStackScreenProps<StackParamList, 'Playlists'>
) : React.JSX.Element {
return (
<Playlists {...props} />
)
}