import type { UiServiceGroup } from "../../types"; import { Panel } from "../frames/Panel"; import { ServiceRow } from "./ServiceRow"; import { StatusStrip } from "./StatusStrip"; export interface ServicePanelProps { group: UiServiceGroup; } export function ServicePanel({ group }: ServicePanelProps) { return (
{group.summary?.length ? ( ) : null} {group.services.map((service) => ( ))}
); }