mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-21 10:21:19 -06:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
import { SafeAreaView } from "react-native-safe-area-context";
|
|
import { ScrollView } from "tamagui";
|
|
|
|
export function Discover(): React.JSX.Element {
|
|
return (
|
|
<SafeAreaView>
|
|
<ScrollView>
|
|
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
)
|
|
} |