vaulterm/frontend/app/hosts/create.tsx
2024-11-08 18:24:08 +07:00

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 />
</>
);
}