Files
App/components/Home/component.tsx
Violet Caulfield 682d243caa removing safeareacontext in leiu of header
adding tab bar to authenticated screen
2024-11-23 08:25:10 -06:00

22 lines
642 B
TypeScript

import { H1, ScrollView, YStack } from "tamagui";
import { useApiClientContext } from "../jellyfin-api-provider";
import _ from "lodash";
import { Heading } from "../helpers/text";
import { SafeAreaView } from "react-native-safe-area-context";
export default function Home(): React.JSX.Element {
const { apiClient } = useApiClientContext();
return (
<ScrollView paddingLeft={10}>
<YStack alignContent='flex-start'>
<Heading>Hi there</Heading>
<ScrollView horizontal>
</ScrollView>
</YStack>
</ScrollView>
);
}