import { Container, Jumbotron, Row, } from '../components/Bootstrap'; import { JSONMessage } from '../helpers/web-socket'; function handleDrop (e) { e.preventDefault(); e.stopPropagation(); const draggedFiles = []; for (const f of e.dataTransfer.files) { draggedFiles.push(f.path); } window.clientWS.send(JSONMessage('dropped-files', draggedFiles)); } function handleDragOver (e) { e.preventDefault(); e.stopPropagation(); } export const HomeView = (props) => { return (

Welcome to Film Exif

Drop files here.

); };