mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2025-12-19 05:37:43 +00:00
15 lines
208 B
TypeScript
15 lines
208 B
TypeScript
import type { Region } from "../types";
|
|
|
|
export const regions: Region[] = [
|
|
{
|
|
name: "US West",
|
|
value: "us-west",
|
|
},
|
|
{
|
|
name: "EU West",
|
|
value: "eu-west",
|
|
},
|
|
];
|
|
|
|
export default regions;
|