import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; // importing other files import Navigator from './routes/homeStack'; export default function App() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, });