aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--App.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/App.js b/App.js
new file mode 100644
index 0000000..80a780e
--- /dev/null
+++ b/App.js
@@ -0,0 +1,12 @@
+import React, { Component } from 'react';
+import { Text, View } from 'react-native';
+
+export default class HelloWorldApp extends Component {
+ render() {
+ return (
+ <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
+ <Text>Hello world!</Text>
+ </View>
+ );
+ }
+}