import { ZoneForm } from "../_components/zone-form/zone-form";
import { fetchBackendZoneCountryOptions } from "../_lib/zones-server-api";

export default async function ZoneCreatePage() {
  const countryOptions = await fetchBackendZoneCountryOptions();
  return <ZoneForm mode="create" countryOptions={countryOptions} />;
}
