2024-11-08 18:53:30 +00:00

13 lines
268 B
TypeScript

import React from "react";
import { Stack } from "expo-router";
import HostForm from "@/pages/hosts/components/form";
export default function EditHostPage() {
return (
<>
<Stack.Screen options={{ title: "Edit Host" }} />
<HostForm />
</>
);
}