12 lines
382 B
TypeScript
12 lines
382 B
TypeScript
import React from 'react';
|
|
import { Text, View } from 'react-native'
|
|
import { NavigationContainer } from '@react-navigation/native';
|
|
import { createStackNavigator } from '@react-navigation/stack';
|
|
|
|
function HomeScreen() {
|
|
return (
|
|
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }} >
|
|
<Text> Home Screen </Text>
|
|
</View>
|
|
);
|
|
} |