Files
papercrate/frontend/src/app/DropOverlay.jsx
T
2025-10-31 01:26:24 +01:00

12 lines
314 B
React

import React from 'react';
const DropOverlay = ({ active, folderName }) => (
<div className={`drop-overlay${active ? ' active' : ''}`}>
<div className="drop-overlay__content">
Drop files to upload to <strong>{folderName || 'this location'}</strong>
</div>
</div>
);
export default DropOverlay;