mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-24 02:27:37 +00:00
Add drop target
This commit is contained in:
parent
987d9b20c0
commit
aaffcb13bd
8 changed files with 104 additions and 6 deletions
11
src/DropTarget.js
Normal file
11
src/DropTarget.js
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue