learn-morse-code/src/components/ChallengeControls.js

10 lines
217 B
JavaScript
Raw Normal View History

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