Components
Expo CLI publishing smoke test with nested support files.
Loading preview...
import { SafeAreaView, StatusBar, StyleSheet, Text, View } from "react-native"
import ExpoCliE2ECard from "@/components/ui/expo-cli-e2e-20260604-local"
import { getDemoCaption } from "../components/ui/expo-cli-e2e-20260604-local-utils/caption"
export default function DefaultDemo() {
return (
<SafeAreaView style={styles.screen}>
<StatusBar barStyle="light-content" />
<View style={styles.center}>
<ExpoCliE2ECard />
<Text style={styles.caption}>{getDemoCaption()}</Text>
</View>
</SafeAreaView>
)
}
const styles = StyleSheet.create({
screen: {
flex: 1,
backgroundColor: "#030712",
},
center: {
flex: 1,
alignItems: "center",
justifyContent: "center",
padding: 24,
},
caption: {
color: "#9ca3af",
fontSize: 13,
marginTop: 16,
},
})