Files
App/components/Home/component.tsx
2024-10-21 07:27:46 -05:00

17 lines
427 B
TypeScript

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