import {Text, View} from 'react-native';
export default function Settings() {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<Text style={{color: '#fff'}}>Settings</Text>
</View>
);
}