Wavelength/app/(tabs)/settings.tsx

26 lines
519 B
TypeScript
Raw Permalink Normal View History

2024-10-08 16:58:50 -05:00
import { StyleSheet } from "react-native";
import { ThemedText } from "@/components/ThemedText";
import { ThemedView } from "@/components/ThemedView";
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,
},
});