6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
import type { UiServiceGroup } from "../types";
|
|
import { ServicePanel } from "./ServicePanel";
|
|
|
|
export function ServiceGroupPanel({ group }: { group: UiServiceGroup }) {
|
|
return <ServicePanel group={group} />;
|
|
}
|