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