Нет описания

HomeScreen.js 336B

123456789101112
  1. import React from "react";
  2. import { StyleSheet, View, Text, Button } from 'react-native';
  3. import { globalStyles } from "../styles/global";
  4. export default function HomeScreen() {
  5. return (
  6. <View style = {globalStyles.container}>
  7. <Text style = {globalStyles.tittleText}>Home Screen</Text>
  8. </View>
  9. )
  10. }