Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 515 Bytes

File metadata and controls

25 lines (23 loc) · 515 Bytes

Lab-Activity---2 Sample Code

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', }, });