bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/drop-areas/container.jsx
2023-04-25 18:20:48 -03:00

16 lines
457 B
JavaScript

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