Separate pages for controls and workers

This commit is contained in:
2025-11-24 17:36:19 +00:00
parent b324540ce0
commit ebf3612c62
14 changed files with 388 additions and 33 deletions

View File

@@ -0,0 +1,5 @@
import { ClusterNodesComponent } from './ClusterNodesComponent';
export function WorkerNodesComponent() {
return <ClusterNodesComponent filterRole="worker" hideDiscoveryWhenNodesGte={undefined} showBootstrap={false} />;
}