* feat(BOOK-463): Fetching hotel filters from CMS and using these inside the destination pages * fix(BOOK-698): fetch hotel filters from CMS on select hotel page Approved-by: Bianca Widstam
18 lines
372 B
TypeScript
18 lines
372 B
TypeScript
export enum Country {
|
|
Denmark = "Denmark",
|
|
Finland = "Finland",
|
|
Germany = "Germany",
|
|
Norway = "Norway",
|
|
Poland = "Poland",
|
|
Sweden = "Sweden",
|
|
}
|
|
|
|
export const CountryCode: Record<Country, string> = {
|
|
[Country.Denmark]: "DK",
|
|
[Country.Finland]: "FI",
|
|
[Country.Germany]: "DE",
|
|
[Country.Norway]: "NO",
|
|
[Country.Poland]: "PL",
|
|
[Country.Sweden]: "SE",
|
|
}
|