npx create-expo-app@latest nombre-proyecto --template blank
npx expo install react-dom react-native-web @expo/metro-runtime
npm i @react-navigation/native react-native-screens react-native-safe-area-context @react-navigation/native-stack
export default function App() {
return (
<View style={styles.container}>
<Text>Tenemos aquí la app</Text>
<StatusBar style="auto" />
</View>
);
}
npm start