chore: display available clusters

This commit is contained in:
jialin
2025-09-16 20:32:26 +08:00
parent c9c9401b0b
commit d063dfd652
14 changed files with 121 additions and 39 deletions
+7
View File
@@ -16,3 +16,10 @@ export const getRequestId = () => {
const store = getDefaultStore();
return store.get(requestIdAtom);
};
export const clusterListAtom = atom<
{
label: string;
value: number;
}[]
>([]);