You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
489 B
26 lines
489 B
import React from 'react';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
|
|
const SettingsPage = () => {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.name}>Settings</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
marginTop:40,
|
|
alignItems: 'center'
|
|
|
|
},
|
|
name: {
|
|
fontSize: 20,
|
|
fontWeight: 'bold',
|
|
textAlign: 'center',
|
|
},
|
|
});
|
|
|
|
export default SettingsPage;
|