mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
15 lines
516 B
TypeScript
15 lines
516 B
TypeScript
import { RegularText } from '../../components/Styled';
|
|
import ScreenLayout from '../../components/layout/screenLayout';
|
|
import { globalStyles } from '../../styles/global';
|
|
import { StyleSheet, Text } from 'react-native';
|
|
|
|
export default function SettingsScreen() {
|
|
return (
|
|
<ScreenLayout title="Settings" subtitle="Need to change something?">
|
|
<RegularText style={globalStyles.textWhite}>
|
|
Settings would be listed in here. Coming soon
|
|
</RegularText>
|
|
</ScreenLayout>
|
|
);
|
|
}
|