Files
native-app/apps/mobile/app/(tabs)/settings.tsx
2024-01-22 22:43:19 +01:00

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>
);
}