Files
App/components/Playlists/screen.tsx
T
Violet Caulfield 6c3acf9349 home screen changes
getting ready to have navigation elements as footers for the horizontal flatlists
2025-02-10 21:40:27 -06:00

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} />
)
}