BUR-58 добавлен видео-блок

This commit is contained in:
Первов Артем
2026-07-05 06:55:17 +03:00
parent 743e3c52b7
commit 6dac1ed2bd
13 changed files with 291 additions and 2 deletions

View File

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