bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/webcam-graphql/drop-areas/container.tsx
João Victor 7297778746 fix: tweak video-streams typings (Part 1)
- Tweak high-level components.
2024-05-01 16:48:12 -03:00

22 lines
588 B
TypeScript

import React from 'react';
import { layoutSelectOutput } from '/imports/ui/components/layout/context';
import { Output } from '/imports/ui/components/layout/layoutTypes';
import DropArea from './component';
const DropAreaContainer = () => {
const dropZoneAreas = layoutSelectOutput((i: Output) => i.dropZoneAreas);
return (
Object.keys(dropZoneAreas).map((objectKey) => (
<DropArea
dataTest={`dropArea-${objectKey}`}
key={objectKey}
id={objectKey}
style={dropZoneAreas[objectKey]}
/>
))
);
};
export default DropAreaContainer;