dimensionlab-website/src/lib/ui/components/ServiceGroupPanel.tsx

6 lines
213 B
TypeScript

import type { UiServiceGroup } from "../types";
import { ServicePanel } from "./ServicePanel";
export function ServiceGroupPanel({ group }: { group: UiServiceGroup }) {
return <ServicePanel group={group} />;
}