mirror of
https://github.com/Jellify-Music/App.git
synced 2025-12-30 15:29:49 -06:00
16 lines
624 B
TypeScript
16 lines
624 B
TypeScript
import React from "react";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
import { ScrollView } from "tamagui";
|
|
import RecentlyAdded from "./helpers/just-added";
|
|
import { NativeStackNavigationProp } from "@react-navigation/native-stack";
|
|
import { StackParamList } from "../types";
|
|
|
|
export default function Index({ navigation }: { navigation : NativeStackNavigationProp<StackParamList> }) : React.JSX.Element {
|
|
return (
|
|
<SafeAreaView>
|
|
<ScrollView removeClippedSubviews>
|
|
<RecentlyAdded navigation={navigation} />
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
)
|
|
} |