No Description

testscreen.js 352B

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