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