create PatchEditorComponent

This commit is contained in:
[poww10s]
2020-09-05 05:24:23 -04:00
parent 81e951109f
commit 02e42ca240
+19
View File
@@ -0,0 +1,19 @@
import React, { useState, useEffect } from "react";
function PatchEditorComponent() {
const [patch, updatePatch] = useState(null);
useEffect(
{
// update the dump and send out a sysex message to the system
},
[patch]
);
return (
// placeholder div
<div></div>
);
}
export default PatchEditorComponent;