import React from 'react'; import dragDrop from 'drag-drop'; import { shareFiles } from './index'; export const configureDragDrop = () => { dragDrop('body', async(files) => await shareFiles(files)); }; export const HoldingOverlay = () => (
Drop files here to share them
);