import { CountryForm } from "../_components/country-form/country-form";
import { fetchBackendCurrencyOptions } from "../../currencies/_lib/currencies-server-api";

export default async function CountryCreatePage() {
  const currencyOptions = await fetchBackendCurrencyOptions();
  return <CountryForm mode="create" currencyOptions={currencyOptions} />;
}
