import { CountryCode } from "@rr0/data";
import { CmsCountry } from "../country/CmsCountry.js";
import { Region } from "../country/region/Region.js";
export const taiwan = new CmsCountry(CountryCode.tw);
export function taiwanRegion(code, place) {
return new Region(code, taiwan, [place]);
}