mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-05 18:40:01 -06:00
22 lines
642 B
TypeScript
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>
|
|
);
|
|
} |