learn-morse-code/src/components/ChallengeControls.js
2020-02-10 00:26:04 -08:00

10 lines
219 B
JavaScript

import React from "react"
export default (function ChallengeControls(props) {
return (
<div id="challengeControls">
<button onClick={props.cancelChallenge}>Exit</button>
</div>
)
})