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,15 @@
import React from 'react';
import Reset from "./Reset";
import Stop from "./Stop";
const SelectionRight = () => {
return (
<div id="selection-right">
<Reset />
<Stop />
</div>
);
}
export default SelectionRight;