Files
native-app/apps/expo/src/app/(tabs)/downloads.tsx
2024-02-14 22:56:39 +01:00

11 lines
259 B
TypeScript

import ScreenLayout from "~/components/layout/ScreenLayout";
import { Text } from "~/components/ui/Text";
export default function DownloadsScreen() {
return (
<ScreenLayout title="Downloads">
<Text>Downloads tab</Text>
</ScreenLayout>
);
}