mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:53:25 +00:00
11 lines
259 B
TypeScript
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>
|
|
);
|
|
}
|