bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/drop-areas/component.jsx
Vitor Mateus De Almeida f0145e001e Add resizable and draggable in cameras dock
Remove settings and change resizable context data

Add resizable draggable drop areas in cameras dock
2021-07-13 04:25:03 -03:00

31 lines
494 B
JavaScript

import React, { Fragment } from 'react';
import styles from './styles.scss';
const DropArea = ({ id, style }) => (
<>
<div
id={id}
className={styles.dropZoneArea}
style={
{
...style,
zIndex: style.zIndex + 1,
}
}
/>
<div
className={styles.dropZoneBg}
style={
{
...style,
zIndex: style.zIndex,
}
}
>
Drop Here
</div>
</>
);
export default DropArea;