bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/webcam-graphql/drop-areas/container.tsx
2024-04-25 13:01:22 -03:00

18 lines
510 B
TypeScript

// @ts-nocheck
/* eslint-disable */
import React from 'react';
import { layoutSelectOutput } from '/imports/ui/components/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;