mirror of
https://github.com/genemecija/learn-morse-code.git
synced 2026-01-16 05:20:03 +01:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
|
|
import React from "react"
|
||
|
|
|
||
|
|
export default (function ChallengeControls(props) {
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div id="challengeControls">
|
||
|
|
<button onClick={props.stopChallenge}>Exit</button>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
})
|