bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/drop-areas/component.jsx
2021-08-24 13:24:48 -03:00

31 lines
480 B
JavaScript

import React 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;