@rr0/cms
Version:
RR0 Content Management System (CMS)
8 lines (7 loc) • 305 B
JavaScript
import { Region } from "../../country/region/Region.js";
import { CmsCountry } from "../../country/CmsCountry.js";
import { CountryCode } from "@rr0/data";
export const germany = new CmsCountry(CountryCode.de);
export function germanyRegion(code, place) {
return new Region(code, germany, [place]);
}