cf-workers-status-page/src/components
Chris Buckley f0b27a8446 Add more data centre locations
The full list of locations was generated from the [Cloudflare Status Page](https://www.cloudflarestatus.com/):

```bash
{
  echo 'export const locations = {';
  curl -ks https://www.cloudflarestatus.com/ | grep -- '- (' | while read line; do
    code=$(awk -F '[()]' '{print $2}' <<< "$line");
    city=$(awk -F '[,-]' '{print $1}' <<< "$line");
    echo "  $code: '${city//\'/’}',";
  done | sort;
  echo '}';
} > src/functions/locations.js
```
2021-10-11 14:13:49 +01:00
..
monitorCard.js Update monitorCard.js 2021-07-23 09:19:34 +02:00
monitorDayAverage.js Add more data centre locations 2021-10-11 14:13:49 +01:00
monitorFilter.js refactor: switch css framework to tailwind 2020-11-21 12:16:25 +01:00
monitorHistogram.js feat: collect avg response time by default 2021-01-19 00:22:20 +01:00
monitorStatusHeader.js Add more data centre locations 2021-10-11 14:13:49 +01:00
monitorStatusLabel.js feat: collect response metrics from cron locations 2020-11-22 12:42:33 +01:00
themeSwitcher.js Add focus ring and remove default focus outline 2021-01-29 18:33:26 +01:00