mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2026-02-07 23:58:57 -08:00
16 lines
239 B
JavaScript
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;
|