mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-04 01:50:09 -06:00
17 lines
427 B
TypeScript
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>
|
|
);
|
|
} |