Files
App/components/Discover/component.tsx

13 lines
318 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>
</ScrollView>
</SafeAreaView>
)
}