123456789101112 |
- import React from "react";
- import { StyleSheet, View, Text, Button } from 'react-native';
- import { globalStyles } from "../styles/global";
-
- export default function HomeScreen() {
- return (
- <View style = {globalStyles.container}>
- <Text style = {globalStyles.tittleText}>Home Screen</Text>
- </View>
- )
- }
|