Browse Source

Enviar arquivos para ''

lucas.trindade 4 weeks ago
parent
commit
60d8d8b428
1 changed files with 19 additions and 0 deletions
  1. 19 0
      index.js

+ 19 - 0
index.js

@@ -0,0 +1,19 @@
+import { Text, View } from "react-native";
+
+export default function Index() {
+    return (
+        <View style={{
+            flex:1, 
+            backgroundColor: 'yellow',
+            justifyContent: 'center',
+            alignItems: 'center'
+        }}>
+            <Text style={{
+                fontSize: 30,
+            }}>
+                Tela Inicial
+            </Text>
+
+        </View>
+    )
+}