13 lines
268 B
TypeScript
Raw Normal View History

2024-11-08 18:24:08 +07:00
import React from "react";
import { Stack } from "expo-router";
2024-11-08 18:53:30 +00:00
import HostForm from "@/pages/hosts/components/form";
2024-11-08 18:24:08 +07:00
export default function EditHostPage() {
return (
<>
<Stack.Screen options={{ title: "Edit Host" }} />
<HostForm />
</>
);
}