mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:53:25 +00:00
11 lines
326 B
TypeScript
11 lines
326 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>
|
|
);
|
|
}
|