wavelength_app/app/(tabs)/settings.tsx

26 lines
479 B
TypeScript
Raw Normal View History

2024-10-16 16:50:26 -05:00
import { StyleSheet } from "react-native";
import { ThemedText, ThemedView } from "@/components/theme/Theme";
const Settings = () => {
return (
<ThemedView style={styles.container}>
<ThemedText style={styles.text}>
Settings
</ThemedText>
</ThemedView>
);
};
export default Settings;
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
text: {
fontSize: 24,
},
});