import {StyleSheet, Text, View} from "react-native"; export type SettingsScreenProps = { }; export const SettingsScreen = (props: SettingsScreenProps) => { return ( Settings Here ) }; export const styles = StyleSheet.create({ wrapper: { } });