import * as React from 'react'; import { Text, View, StyleSheet } from 'react-native';
export default function App() { return ( Hello, Expo Snack! ); }
const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#D6EAF8', }, text: { fontSize: 24, fontWeight: 'bold', color: '#2E86C1', }, });