- Configure workspace Git repository with comprehensive .gitignore - Add Odoo as submodule for ERP reference code - Include documentation: SETUP.md, GIT-STRUCTURE.md - Add gitignore templates for projects (backend, frontend, database) - Structure supports independent repos per project/subproject level Workspace includes: - core/ - Reusable patterns, modules, orchestration system - projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.) - knowledge-base/ - Reference code and patterns (includes Odoo submodule) - devtools/ - Development tools and templates - customers/ - Client implementations template 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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',
|
||
},
|
||
});
|