import { StyleSheet } from 'react-native'; import EditScreenInfo from '../components/EditScreenInfo'; import { Text, View } from '../components/Themed'; export default function TabTwoScreen() { return ( Tab Two ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, title: { fontSize: 20, fontWeight: 'bold', }, separator: { marginVertical: 30, height: 1, width: '80%', }, });