Files
CityExplorer/app/(tabs)/formScreen.tsx
2025-04-07 21:26:22 +02:00

22 lines
400 B
TypeScript

import { Text, View, StyleSheet } from 'react-native';
export default function FormScreen() {
return (
<View style={styles.container}>
<Text style={styles.text}>Form</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#25292e',
justifyContent: 'center',
alignItems: 'center',
},
text: {
color: '#fff',
},
});