fcc-challenges/drum-machine-react/src/SelectionRight.js

16 lines
239 B
JavaScript

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;