Files
ui/src/components/CameraViewsContainer.tsx
2026-07-05 06:55:17 +03:00

8 lines
246 B
TypeScript

import type { PropsWithChildren } from 'react';
type CameraViewsContainerProps = PropsWithChildren;
export function CameraViewsContainer({ children }: CameraViewsContainerProps) {
return <div className="camera-views-grid">{children}</div>;
}