feat: MVP completo - backend + frontend funcional con ETA y guia de separacion
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user