38 lines
813 B
TypeScript
38 lines
813 B
TypeScript
/**
|
||
* App Component - React Native + Expo
|
||
* MVP Sistema Administración de Obra e INFONAVIT
|
||
*/
|
||
|
||
import { StatusBar } from 'expo-status-bar';
|
||
import { StyleSheet, Text, View } from 'react-native';
|
||
|
||
export default function App() {
|
||
return (
|
||
<View style={styles.container}>
|
||
<Text style={styles.title}>🏗️ Sistema Administración de Obra</Text>
|
||
<Text style={styles.subtitle}>App Móvil - Supervisor</Text>
|
||
<StatusBar style="auto" />
|
||
</View>
|
||
);
|
||
}
|
||
|
||
const styles = StyleSheet.create({
|
||
container: {
|
||
flex: 1,
|
||
backgroundColor: '#fff',
|
||
alignItems: 'center',
|
||
justifyContent: 'center',
|
||
padding: 20,
|
||
},
|
||
title: {
|
||
fontSize: 24,
|
||
fontWeight: 'bold',
|
||
marginBottom: 8,
|
||
textAlign: 'center',
|
||
},
|
||
subtitle: {
|
||
fontSize: 16,
|
||
color: '#666',
|
||
},
|
||
});
|