npx create-expo-app MyApp
cd MyApp && npx expo start
// Same React concepts, different components
import { View, Text, TouchableOpacity, StyleSheet } from "react-native";
function App() {
return (
Hello Mobile!
Alert.alert("Hi!")}>
Tap me
);
}