feat: MVP completo - backend + frontend funcional con ETA y guia de separacion

This commit is contained in:
2026-05-22 15:41:08 -06:00
parent a98b899a94
commit f8a4795ace

View File

@@ -1,20 +1,29 @@
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "AppFragmentNode", {
enumerable: true,
get: function() {
return AppFragmentNode;
}
});
function _core() {
const data = require("@urql/core");
_core = function() {
return data;
};
return data;
}
const AppFragmentNode = (0, _core().gql)`
fragment AppFragment on App {
id
scopeKey
ownerAccount {
id
name
}
}
`;
//# sourceMappingURL=App.js.map