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