2021-08-25 00:24:48 +08:00
|
|
|
import React from 'react';
|
2021-07-13 03:47:06 +08:00
|
|
|
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;
|