Files
ui/src/components/MetricWidgetsContainer.tsx
2026-07-02 15:58:39 +05:00

8 lines
254 B
TypeScript

import type { PropsWithChildren } from 'react';
type MetricWidgetsContainerProps = PropsWithChildren;
export function MetricWidgetsContainer({ children }: MetricWidgetsContainerProps) {
return <div className="metric-widgets-grid">{children}</div>;
}