bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/drop-areas/component.jsx

31 lines
480 B
React
Raw Normal View History

2021-08-25 00:24:48 +08:00
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;