1234567891011 |
- import React from "react";
- import { StyleSheet, View, Text, Button } from 'react-native';
- import { globalStyles } from "../styles/global";
-
- export default function testscreen() {
- return (
- <View style = {globalStyles.container}>
- <Text style = {globalStyles.tittleText}>This is a test for pin button</Text>
- </View>
- )
- }
|