mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-11 21:18:30 -06:00
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
12 lines
362 B
TypeScript
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} />
|
|
)
|
|
} |