+ {/* TODO: Implement a basic version in the packages repo */}
+
+
+ Home
+
+
+ Internal
+
+
+ Metrics
+
+
+ {metricFullName}
+
+
+
+ {metric.id}
+ Name: {metric.name}
+ Extended name: {metric.extendedName}
+
+ Categories:{" "}
+ {!metric.categoryValues ? "N/A" : metric.categoryValues.join(", ")}
+
+
+
+ Definition
+
+ {JSON.stringify(metric, null, 2)}
+
+
+ Data Available
+
+ {error && (
+
+ Failed to fetch data:
+ error
+
+ More details may be available in the console.
+
+
+ )}
+ {data ? (
+
+ ) : (
+
+ )}
+
+ >
+ );
+};
+
+const RegionDataTable = ({
+ data,
+ metric,
+}: {
+ data: MultiRegionMultiMetricDataStore;
+ metric: Metric;
+}) => {
+ return (
+