Tools are working

This commit is contained in:
Federico Kereki
2018-08-25 22:25:58 -03:00
parent 4f00f6518b
commit 01b438322a
10 changed files with 2197 additions and 32 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"
}
});