add drum-machine-react

This commit is contained in:
2020-05-26 07:01:12 -07:00
parent 06590ce07f
commit b659e8549a
55 changed files with 18652 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import Selection from "./Selection";
import SelectVolume from "./SelectVolume";
import Metronome from "./Metronome";
const SelectionLeft = () => {
return (
<div id="selection-left">
<Selection />
<SelectVolume />
<Metronome />
</div>
);
}
export default SelectionLeft;