mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 10:13:25 +00:00
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
import ScreenLayout from '@/components/layout/ScreenLayout';
|
|
import { Text } from '@/components/ui/Text';
|
|
|
|
export default function SettingsScreen() {
|
|
return (
|
|
<ScreenLayout title="Settings" subtitle="Need to change something?">
|
|
<Text>Settings would be listed in here. Coming soon</Text>
|
|
</ScreenLayout>
|
|
);
|
|
}
|