9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
|
|
<Text>Home</Text>
|
|
</View>
|
|
);
|
|
} |