Files
native-app/apps/mobile/app/(tabs)/about.tsx
2024-01-29 10:34:51 +01:00

17 lines
417 B
TypeScript

import ScreenLayout from '@/components/layout/ScreenLayout';
import { Text } from '@/components/ui/Text';
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>
);
}