mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-17 17:19:37 +07:00
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
|
import React from "react";
|
||
|
import { Stack } from "expo-router";
|
||
|
import HostForm from "./_comp/host-form";
|
||
|
|
||
|
export default function CreateHostPage() {
|
||
|
return (
|
||
|
<>
|
||
|
<Stack.Screen options={{ title: "Add Host" }} />
|
||
|
<HostForm />
|
||
|
</>
|
||
|
);
|
||
|
}
|