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