mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-26 04:49:27 -05:00
6c3acf9349
getting ready to have navigation elements as footers for the horizontal flatlists
12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
import { NativeStackScreenProps } from "@react-navigation/native-stack";
|
|
import { StackParamList } from "../types";
|
|
import FavoritePlaylists from "./component";
|
|
import React from "react";
|
|
|
|
export default function PlaylistsScreen(
|
|
props: NativeStackScreenProps<StackParamList, 'Playlists'>
|
|
) : React.JSX.Element {
|
|
return (
|
|
<FavoritePlaylists {...props} />
|
|
)
|
|
} |