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