chore: workers list api

This commit is contained in:
jialin
2024-06-26 10:36:29 +08:00
parent ad9775db69
commit 2e30eb7012
5 changed files with 70 additions and 27 deletions
+2 -2
View File
@@ -4,13 +4,13 @@ import type { TabsProps } from 'antd';
import { Tabs } from 'antd';
import { useState } from 'react';
import GPUs from './components/gpus';
import Nodes from './components/nodes';
import Workers from './components/workers';
const items: TabsProps['items'] = [
{
key: 'workers',
label: 'Workers',
children: <Nodes />
children: <Workers />
},
{
key: 'gpus',