mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2024-11-21 19:31:29 -08:00
18 lines
329 B
JavaScript
18 lines
329 B
JavaScript
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;
|