mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
import React from "react";
|
|
import { Stack } from "expo-router";
|
|
import HostForm from "@/pages/hosts/components/form";
|
|
|
|
export default function CreateHostPage() {
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ title: "Add Host" }} />
|
|
<HostForm />
|
|
</>
|
|
);
|
|
}
|