mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
15 lines
280 B
TypeScript
15 lines
280 B
TypeScript
import { View, Text } from "react-native";
|
|
import React from "react";
|
|
import { Stack } from "expo-router";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<View>
|
|
<Stack.Screen options={{ title: "Home" }} />
|
|
<Text>HomePage</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|