mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-04 09:28:28 -06:00
13 lines
340 B
TypeScript
13 lines
340 B
TypeScript
import React from "react";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
import { ScrollView } from "tamagui";
|
|
|
|
export default function Index() : React.JSX.Element {
|
|
return (
|
|
<SafeAreaView>
|
|
<ScrollView removeClippedSubviews>
|
|
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
)
|
|
} |