Add drop target

This commit is contained in:
Jordan Eldredge 2020-09-12 23:17:43 -07:00
parent 987d9b20c0
commit aaffcb13bd
8 changed files with 104 additions and 6 deletions

11
src/DropTarget.js Normal file
View file

@ -0,0 +1,11 @@
import React from "react";
import { HEADING_HEIGHT } from "./constants";
function DropTarget() {
return (
<div style={{ color: "white", marginTop: HEADING_HEIGHT }}>
<h1>Drop</h1>
</div>
);
}
export default DropTarget;