Changed name

This commit is contained in:
Federico Kereki
2018-09-15 11:14:10 -03:00
parent 250bbcc974
commit 0038816a1a
56 changed files with 0 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import React from "react";
import { StyleSheet, Text, View } from "react-native";
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<Text>Changes you make will automatically reload.</Text>
<Text>Shake your phone to open the developer menu.</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center"
}
});