Files
native-app/apps/mobile/app/(tabs)/about.tsx
Jorrin 89d1310eac help
2024-01-28 21:53:06 +01:00

18 lines
420 B
TypeScript

import { Text } from '../components/ui/Text';
import ScreenLayout from '../components/layout/ScreenLayout';
export default function AboutScreen() {
return (
<ScreenLayout
title="About"
subtitle="What is movie-web and how content is served?"
>
<Text>
No content is served from movie-web directly and movie web does not host
anything.
</Text>
</ScreenLayout>
);
}