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:
17
drum-machine-react/src/SelectionLeft.js
Normal file
17
drum-machine-react/src/SelectionLeft.js
Normal 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;
|
||||
Reference in New Issue
Block a user