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