vaulterm/frontend/app/index.tsx

17 lines
381 B
TypeScript
Raw Normal View History

2024-11-05 18:43:59 +07:00
import { View, Text } from "react-native";
import React from "react";
import { Stack } from "expo-router";
2024-11-06 06:24:14 +00:00
import Terminal from "@/components/containers/terminal";
2024-11-05 18:43:59 +07:00
const HomePage = () => {
return (
2024-11-06 06:24:14 +00:00
<View style={{ flex: 1 }}>
2024-11-05 18:43:59 +07:00
<Stack.Screen options={{ title: "Home" }} />
2024-11-06 06:24:14 +00:00
<Terminal wsUrl="ws://10.0.0.100:3000/ws" />
2024-11-05 18:43:59 +07:00
</View>
);
};
export default HomePage;