mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2026-02-07 23:58:57 -08:00
add drum-machine-react
This commit is contained in:
15
drum-machine-react/src/SelectionRight.js
Normal file
15
drum-machine-react/src/SelectionRight.js
Normal 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;
|
||||
Reference in New Issue
Block a user