mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
17 lines
381 B
TypeScript
17 lines
381 B
TypeScript
import { View, Text } from "react-native";
|
|
import React from "react";
|
|
import { Stack } from "expo-router";
|
|
import Terminal from "@/components/containers/terminal";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<View style={{ flex: 1 }}>
|
|
<Stack.Screen options={{ title: "Home" }} />
|
|
|
|
<Terminal wsUrl="ws://10.0.0.100:3000/ws" />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|