소스 검색

Merge remote-tracking branch 'origin/PincodeB' into PincodeB

# Conflicts:
#	MocionesIUPI/package-lock.json
#	MocionesIUPI/package.json
#	MocionesIUPI/routes/homeStack.js
#	MocionesIUPI/screens/HomeScreen.js
#	MocionesIUPI/screens/PincodeScreen.js
Jeann-Carlos 2 년 전
부모
커밋
60701452ce
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11
    0
      MocionesIUPI/screens/testscreen.js

+ 11
- 0
MocionesIUPI/screens/testscreen.js 파일 보기

@@ -0,0 +1,11 @@
1
+import React from "react";
2
+import { StyleSheet, View, Text, Button } from 'react-native';
3
+import { globalStyles } from "../styles/global";
4
+
5
+export default function testscreen() {
6
+    return (
7
+        <View style = {globalStyles.container}>
8
+            <Text style = {globalStyles.tittleText}>This is a test for pin button</Text>
9
+        </View>
10
+    )
11
+}