Add services status view with polling and control actions
CI / basic-check (push) Has been cancelled

This commit is contained in:
Perplexity Bot
2026-08-03 22:22:59 +00:00
parent be55c35c3a
commit 186aae1b5f
10 changed files with 204 additions and 25 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
import { AppLayout } from '../components/AppLayout';
import type { ViewKey } from '../types';
export function DiscoveryJobsView() {
export function DiscoveryJobsView({ onNavigate }: { onNavigate: (v: ViewKey) => void }) {
return (
<AppLayout current="discovery" onNavigate={() => {}}>
<AppLayout current="discovery" onNavigate={onNavigate}>
<header className="header">
<h1 className="page-title">Discovery Jobs</h1>
</header>