18 lines
323 B
TypeScript
18 lines
323 B
TypeScript
import {StyleSheet, Text, View} from "react-native";
|
|
|
|
export type SettingsScreenProps = {
|
|
|
|
};
|
|
|
|
export const SettingsScreen = (props: SettingsScreenProps) => {
|
|
return (
|
|
<View style={styles.wrapper}>
|
|
<Text>Settings Here</Text>
|
|
</View>
|
|
)
|
|
};
|
|
|
|
export const styles = StyleSheet.create({
|
|
wrapper: {
|
|
}
|
|
});
|