diff --git a/src/DropTarget.js b/src/DropTarget.js new file mode 100644 index 00000000..b305a8b2 --- /dev/null +++ b/src/DropTarget.js @@ -0,0 +1,39 @@ +import React from "react"; + +function DropTarget({ getInputProps }) { + return ( +
+
Drop Skins Here
+
+ We'll analyze them in your browser to find any that are missing from the + museum +
+ +
+ ); +} + +export default DropTarget;