Files
native-app/apps/mobile/app/(tabs)/about.tsx
2024-01-27 13:53:41 +01:00

18 lines
414 B
TypeScript

import { Text } from 'react-native';
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>
);
}